✌️How to Access a GPU VM?

When a GPU VM running Ubuntu is successfully created on the FPT Portal, users can access it by default through the built-in Web Console. Additionally, users can connect externally using SSH clients or third-party software like PuTTY or Bitvise.

Connect to a GPU VM via Web Console

The Web Console allows users to control all GPU VMs on FPT Cloud, even those without a Public IP.

1

On the Side menu, go to Instance Management, find the virtual machine you want to access, and under the Actions section, select Console.

2

The browser will immediately open a new window displaying the server screen, allowing you full control and interaction with the connected server.

SSH to Connect to a GPU VM

You can connect to a GPU VM using an SSH client, typically from a terminal.

To do so, you need to have the following three pieces of information:

  • The public IP address: After your GPU VM is created and allocated a public IP, that is displayed in the GPU VM list or the GPU VM details pages

  • The username on the server during initial creation is root.

  • The authentication method for that user. If you add SSH keys to your GPU VM, you can connect using those keys, which we strongly recommend for its additional security. Otherwise, if you use password authentication, use the password you chose.

Once you have your GPU VM's public IP address, username, and password or SSH keys, follow the instructions for your SSH client.

1

Open your terminal

  • On Linux/macOS: Launch the Terminal app.

  • On Windows: Use CMD, PowerShell, Git Bash, or WSL.

2

Connecting to your VM

You can connect to your VM in two ways: using a password or an SSH key (.pem file).

  1. Open your terminal or command prompt.

  2. Enter the following command to connect to your VM:

ssh <username>@<VM_IP>

Last updated