diff --git a/README.md b/README.md
index 16d742dfc6ba5e3808a1010338a5f33ea25d9c2e..ff5966f40c1ebc5d002518dfd04e3eb196a3ae63 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Link: [robotlearn.gitlabpages.inria.fr/cluster-monitor](https://robotlearn.gitla
 
 The cluster monitor counts two entities:
 - The **backend** server is running on an Inria machine (`perception.inrialpes.fr`).
-  It is performing `ssh` commands to other nodes (especially `access1-cp`) to gather the cluster
+  It is performing `ssh` commands to other nodes (especially `access2-cp`) to gather the cluster
   state.\
   It also exposes a [Socket.IO](https://socket.io/) server to the web clients that connect to it.
   It pushes the cluster information to all of the connected clients through the _socket-io_
diff --git a/backend/cluster.py b/backend/cluster.py
index f265565909e8e30f1fd30c75c5b81acd4c9c604d..f2fe6e152cc5c920bb1a7378620ac900806bff85 100644
--- a/backend/cluster.py
+++ b/backend/cluster.py
@@ -55,7 +55,7 @@ USER_COLORS: dict[str, str] = {
 
 def _run_remote_command_and_fetch_dict(update_cmd: list[str]) -> dict:
 
-    update_cmd = ['ssh', 'access1-cp'] + update_cmd
+    update_cmd = ['ssh', 'access2-cp'] + update_cmd
 
     try:
         cmd_output: subprocess.CompletedProcess = subprocess.run(