Connect to Your VPS via SSH
Data necessarys for connect
Encuéntralos in your email de bienvenida or in the Área de Clientes:
- IP of the VPS: Ej: 45.67.89.100
- Port: 22
- User: root
- Password: La of the email de bienvenida
Connect from Windows
Option A — PuTTY
- Download PuTTY e instálalo
- En Host Name escribe la IP of your VPS
- Port 22, type SSH
- Clic en Open → escribe user and password
Option B — PowerShell or CMD (Windows 10/11)
ssh root@IP-DE-TU-VPS
Connect from Mac or Linux
Opin the Terminal and escribe:
ssh root@IP-DE-TU-VPS
Primera vez: escribe yes for aceptar la huella digital of the servidor.
Primeros steps al connect
Una vez inside, ejecuta estos comandos for update el sistheme:
# En Ubuntu/Debian:
apt update && apt upgrade -y
# En AlmaLinux/CentOS:
yum update -y
apt update && apt upgrade -y
# En AlmaLinux/CentOS:
yum update -y
🔐 Security: Cambia la password de root inmediatamente with
passwd and considera create un user no-root for el día a día.✅ Conectado. Tienes control total of your VPS. Usa
exit for close la sesión.