Overview
SSH (Secure Shell) is the standard method for connecting to and managing your Linux VPS. This guide covers how to connect from Windows, macOS, and Linux.
Before You Begin
You will need:
- Your server IP address (found in the Control Panel)
- Your root password (provided at setup or after OS reinstall)
- An SSH client (built into macOS/Linux, or PuTTY for Windows)
Connecting from macOS or Linux
Open Terminal and run:
ssh root@YOUR_SERVER_IP
Replace YOUR_SERVER_IP with your actual server IP address. When prompted, enter your root password.
Example:
ssh root@203.0.113.50
Connecting from Windows 10/11
Windows 10 and 11 include a built-in SSH client. Open Command Prompt or PowerShell and run:
ssh root@YOUR_SERVER_IP
Connecting from Windows (PuTTY)
If you prefer a graphical client:
- Download PuTTY
- Open PuTTY and enter your server IP in the Host Name field
- Ensure Port is set to
22and Connection type isSSH - Click Open
- Log in as
rootwith your password
First-Time Connection Warning
On your first connection, you will see a warning about the server fingerprint. This is normal — type yes to continue and save the fingerprint.
Troubleshooting
| Issue | Solution |
|---|---|
| Connection refused | Check that your VPS is running in the Control Panel |
| Connection timed out | Verify the IP address; check firewall settings |
| Permission denied | Verify you are using the correct password |
Next Steps
After connecting, we recommend setting up SSH key authentication for improved security.