SSH (Secure Shell) is how you manage a Linux server remotely. This guide walks from zero to your first successful connection.
What You Need
- Your server IP address (from your hosting dashboard)
- Your username (usually
rooton a new VPS) - Your password or SSH key file
Windows: Download and Use PuTTY
- Download PuTTY from putty.org
- Enter your server IP in the “Host Name” field
- Leave Port as 22, click Open
- Accept the security fingerprint alert on first connect
- Enter your username and password
Mac / Linux: Use Terminal
ssh root@YOUR_SERVER_IP
First Commands After Login
# Update all packages
apt-get update && apt-get upgrade -y
# Check RAM usage
free -m
# Check disk space
df -h
Security tip: Change your root password immediately after first login with the passwd command.
Already have a server?
Our control panel lets you manage everything from a web interface โ no terminal knowledge required.