How to Access Your VPS via SSH
🔑 Requirements
Before connecting, make sure you have:
- Your VPS IP address
- Your username (usually
rootor a custom user) - Your password or SSH private key
- An SSH client (Terminal, PuTTY, or similar)
💻 Connect Using Windows (PuTTY)
- Download PuTTY from https://www.putty.org
- Open PuTTY
- Enter your VPS IP address
- Set Port to
22 - Select SSH
- Click Open
- Enter your username and password
🖥️ Connect Using macOS / Linux (Terminal)
Open Terminal and run:
ssh username@your-server-ip
Example:
ssh root@192.168.1.10
Enter your password when prompted.
🔐 Connect Using SSH Key
If you use key authentication:
ssh -i /path/to/key.pem username@server-ip
❗ Common Issues
- Connection refused → SSH service may be stopped
- Permission denied → Check credentials
- Timeout → Firewall may be blocking port 22
Updated on: 07/02/2026
Thank you!