How to Connect to Your Linux Server
You connect to a Linux Server using SSH (Secure Shell). This gives you access to your server's command line.
Windows server?
If you want to connect to a Windows server instead, follow the guide Connect to a Windows Server.
Requirements
You need the following connection details. You can find them in your dashboard as well as in the provisioning email of your server:
- IP address of your server
- Username (usually
root) - Password
Establishing the connection
Windows, macOS & Linux (terminal)
An SSH client is already built into all modern systems. On Windows open PowerShell, on macOS or Linux open the Terminal.
Run the SSH command
Enter the following command and replaceYOUR_SERVER_IPwith your server's IP address:bashssh root@YOUR_SERVER_IPssh root@YOUR_SERVER_IPConfirm the fingerprint
On the first connection you will be asked whether you trust the server. Confirm withyes.Enter the password
Enter your password and confirm withEnter.Password
You can find the password in your dashboard.
Note
For security reasons nothing is displayed while typing the password — not even asterisks. Type the password blindly and confirm with
Enter.
Windows (PuTTY)
Alternatively, you can use the graphical SSH client PuTTY on Windows.
Download PuTTY
Download and install PuTTY.Establish the connection
Enter your server's IP address in the Host Name (or IP address) field and click Open.Log in
Enterrootas the username, followed by your password.Password
You can find the password in your dashboard.
Warning
Change the root password after your first login to secure your server. Follow the guide Change Root Password.
Next steps
- Secure SSH Access — set up SSH keys and disable password login for more security.