Connect to your Linux VPS via SSH
1. What is SSH?
SSH (Secure Shell) is a protocol that allows you to connect remotely to your VPS securely.
This is the first step to start managing your Linux server.
2. Information needed
Before you begin, make sure you have:
- IP Address of your VPS (visible on your ElypseCloud panel)
- Password (received by email when you placed the order)
- SSH Port (default:
22, unless you changed it)
From Windows
Connect with PuTTY
- Download PuTTY here: https://www.putty.org/
- Open PUTTY.
- In "Host Name", enter your VPS IP.
- Click Open.
- A black window opens: type
root, press Enter. - Then enter the root password (invisible when typing), then Enter.
Connect with your Terminal (Windows 8, 10 or 11)
- Click the Start menu, then type "Terminal".
- In the console, type the following command:
ssh root@YOUR_VPS_IP
From MacOS
macOS has a native terminal compatible with SSH:
- Open the Terminal application (Spotlight > Terminal).
- Type the following command:
ssh root@YOUR_VPS_IP
- Type "yes" if this is your first connection.
- Enter the root password (invisible when typing), then Enter.
Want to connect with a dedicated app without having to retype the IP each time?
From Linux
The SSH command is already installed on all major distributions:
- Open your terminal.
- Execute this command:
ssh root@YOUR_VPS_IP
- Accept the connection if prompted.
- Enter the root password.
In case of connection error
warning
You have an error like:
- Connection refused
- Timeout
- Permission denied
Here are some tips to fix the problem:
- Check that your VPS is properly powered on from the panel.
- Make sure you are using the correct IP and password.
- Check that SSH port (22) is properly open in firewall rules.
🎉 Congratulations
Your SSH connection is working!
Need help?
If you encounter any issues, open a ticket on our Discord.