Skip to main content
Connect to a cloud server
Last update:

Connect to a cloud server

You can connect to the cloud server:

In order to connect to a cloud server via SSH or RDP, it must have access to the Internet:

View parameters for connecting

The settings for connecting to the cloud server can be viewed in Control Panel:

  • user name (login) and password — in Cloud PlatformServers → server page → Console tab → Login and Password fields;
  • public IP address — in Cloud PlatformServers → server page → Ports tabPublic IP column.

If you forget your server password, you can reset and recover it.

Connect via SSH

The SSH protocol is used to connect to Linux cloud servers.

To connect to the server, you can enter a login and password or use SSH key pair. We recommend using SSH keys instead of login and password — you can only connect using keys from the computer where the private key is stored.

You can store public SSH keys in the cloud platform.

  1. Optional: create an SSH key pair and place the public SSH key on the cloud server: when creating a server or on an existing server.

  2. Open the CLI.

  3. Connect to the server:

    ssh <username>@<ip_address>

    Specify:

    • <username> — user name (login). You can look in control panel under Cloud PlatformServers → server page → Console tabLogin field;
    • <ip_address> is the public IP address of the server. You can look in control panel under Cloud PlatformServers → server page → Ports tabPublic IP column.
  4. Enter your password. You can look in control panel under Cloud PlatformServers → server page → Console tabPassword field.

    If you are using an SSH key pair, you do not need to enter a password.

Error when reconnecting

If you use SSH keys to connect, the SSH key is saved to the ~/.ssh/known_hosts file when you first authorize to the server. When reconnecting, a REMOTE HOST IDENTIFICATION HAS CHANGED error may appear.

To correct a mistake:

  • delete the host information by IP address:

    ssh-keygen -f "/home/root/.ssh/known_hosts" -R "<ip_address>"
  • or connect to the server using the command:

    ssh -o UserKnownHostsFile=/dev/null root@<ip_address>

Connect via RDP

The RDP protocol is used to connect to Windows cloud servers.

  1. Open the Start menuRemote Desktop Connection.
  2. In the Computer field, enter the public IP address of the server. You can look in control panel under Cloud PlatformServers → server page → Ports tabPublic IP column.
  3. Press Connect.
  4. Enter a username. You can look in control panel under Cloud PlatformServers → server page → Console tabLogin field.
  5. Enter your password. You can look in control panel under Cloud PlatformServers → server page → Console tabPassword field.
  6. Press OK.

Connect via the console in the control panel

You can connect via the console in the control panel to a cloud server with any operating system.

Console is a browser-based VNC client, we recommend using it only in cases when it is impossible to connect to the server via SSH or RDP. Copying text from the console is not available, you can paste text using Ctrl+V.

  1. In Control Panel, go to Cloud PlatformServers.
  2. Open the server page → Console tab.
  3. At the server line, click .
  4. Enter the user name (login). You can look in the Login field.
  5. Enter your password. You can look in the Password field.