Find us on social media
SSHVPSGetting started4 min read
First access to your VPS
Receive credentials, connect via SSH from Windows/Mac/Linux, first commands and password change.
Receive credentials
After purchasing your VPS, you'll receive an email with:
- Server IP: The address to connect to
- Username: Usually
root - Password: Initial temporary password
- SSH Port: Default 22
You can also find these in the panel: Services → Your VPS → Information.
Connect via SSH
From Linux/macOS
Open terminal and run:
bash
ssh root@YOUR_SERVER_IPFirst time it asks if you trust the host. Type yes and press Enter. Then enter the password.
From Windows
Option 1: Windows Terminal (recommended)
Windows 10/11 includes a native SSH client:
powershell
ssh root@YOUR_SERVER_IPOption 2: PuTTY
- Download PuTTY from putty.org
- Enter the IP in "Host Name"
- Port: 22
- Click "Open"
- Enter username and password
First commands
Once connected, run these basic commands:
bash
# View system info
uname -a
# Check disk usage
df -h
# Check available memory
free -h
# View server IP
ip addr show
# Update the system
sudo apt update && sudo apt upgrade -yChange root password
bash
passwdEnter the new password twice. Use a strong password (minimum 12 characters, combining letters, numbers and symbols).
Create non-root user (recommended)
bash
# Create user
adduser deploy
# Grant sudo permissions
usermod -aG sudo deploy
# Test the new user
su - deploy
sudo whoami # Should show: rootFrom now on, connect with the new user:
bash
ssh deploy@YOUR_SERVER_IPBasic system orientation
/root→ Root user's home/home/username→ Normal users' home/var/www→ Web files (Nginx/Apache)/etc→ Configuration files/var/log→ System logs
Recommended next steps
- Configure firewall (see UFW guide)
- Set up SSH keys and disable passwords
- Install fail2ban
- Install your stack (Nginx, Node.js, Docker, etc.)
Recommendations
- Never work as root directly in production
- Change the password immediately after first access
- Store credentials in a password manager
- If you lose SSH access, use VNC console from the panel
Was this guide helpful?