Connect to your Vultr VX1™ Cloud Compute instance using OpenSSH with either default user credentials or SSH keys for secure access.
OpenSSH is a secure protocol used to connect to remote servers through encrypted SSH sessions. Vultr VX1™ Cloud Compute instances include OpenSSH by default, allowing you to log in and manage your server securely.
Follow this guide to connect to a Vultr VX1™ Cloud Compute instance using SSH on your workstation.
Open your instance's management page in the Vultr Customer Portal.
Note the default credentials within the Overview tab and copy the user password to your clipboard.
Open a new terminal or command prompt application on your workstation.
Connect to your Vultr VX1™ Cloud Compute instance using SSH.
$ ssh username@SERVER-IP
Enter yes and press ENTER when prompted to add the instance's public key to your known hosts.
The authenticity of host '192.0.2.18 (192.0.2.18)' can't be established.
ED25519 key fingerprint is SHA256:gTAOuCiCa3Us4tpVaVHVk9d3qOjKrsqXPOsAFQbB8xw.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])?Enter your instance user's password when prompted and press ENTER to log in.
username@SERVER-IP's password:View the active user in your SSH session.
$ whoami
Open a new terminal or command prompt application on your workstation.
Connect to your Vultr VX1™ Cloud Compute instance using a specific SSH key on your workstation.
$ ssh -i /path/to/private/key username@SERVER-IP
Enter yes and press ENTER when prompted to add the instance's public key to your known hosts.
The authenticity of host '192.0.2.18 (192.0.2.18)' can't be established.
ED25519 key fingerprint is SHA256:gTAOuCiCa3Us4tpVaVHVk9d3qOjKrsqXPOsAFQbB8xw.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])? yesView the active user in your SSH session.
$ whoami