Required Connection Details
Find them in your welcome email or Client Area:
- VPS IP: E.g: 45.67.89.100
- Port: 22
- User: root
- Password: From the welcome email
Connect from Windows
Option A — PuTTY
- Download PuTTY and install it
- In Host Name, enter your VPS IP
- Port 22, type SSH
- Click Open → enter username and password
Option B — PowerShell or CMD (Windows 10/11)
ssh root@YOUR-VPS-IP
Connect from Mac or Linux
Open the Terminal and type:
ssh root@YOUR-VPS-IP
First time: type yes to accept the server's fingerprint.
First Steps After Connecting
Once inside, execute these commands to update the system:
# On Ubuntu/Debian:
apt update && apt upgrade -y
# On AlmaLinux/CentOS:
yum update -y
apt update && apt upgrade -y
# On AlmaLinux/CentOS:
yum update -y
???? Security: Change the root password immediately with
passwd and consider creating a non-root user for daily operations.✅ Connected. You have full control of your VPS. Use
exit to close the session.