Reset your VPS root password using the control panel
You may need to reset your root password if:
The easiest way to reset your root password is through the SolusVM control panel.
When choosing a new password, make sure it:
Use SolusVM's built-in password generator or a password manager to create strong, random passwords. This is more secure than creating passwords manually.
Once you've reset the password, test that you can log in:
ssh root@your-vps-ip # Enter your new password when prompted
Remember to update your password in:
If you have console access but forgot the password, you can boot into rescue mode or single-user mode to reset the password manually.
chroot to access your systempasswd root to set new passwordIf you can't access SolusVM or console, contact support to help reset your password. You'll need to verify your account ownership.
For enhanced security, consider using SSH keys instead of passwords:
# Generate SSH key pair on your local machine ssh-keygen -t ed25519 -C "your_email@example.com" # Copy public key to your VPS ssh-copy-id root@your-vps-ip # Test key-based login ssh root@your-vps-ip
Once SSH keys are working, you can disable password authentication in /etc/ssh/sshd_config:
PasswordAuthentication no PubkeyAuthentication yes
If you're having trouble resetting your password, open a support ticket at clientarea.ramnode.com. Our team can assist you with password recovery.