Skip to content

How do I change my password on my VPS?

Learn how to change your VPS password for better security.

It's important to regularly change your password for the security of your VPS. You can do this via the command line (Linux) or via Remote Desktop (Windows).

For Linux (via SSH)

Change your own user password

  1. Log into your VPS via SSH
  2. Enter the following command:
bash
passwd
  1. Enter your current password when prompted
  2. Enter your new password (twice for confirmation)

Change root password (with sudo rights)

If you want to change the root password (for Debian/Ubuntu use sudo):

bash
sudo passwd root

Or if you're already logged in as root:

bash
passwd root

For Windows Server (via RDP)

  1. Log in via Remote Desktop
  2. Press Ctrl + Alt + Delete
  3. Click "Change a password"
  4. Enter your old and new password

Tips for a strong password

A strong password has:

  • At least 12 characters
  • Upper and lower case letters
  • Numbers
  • Special characters (such as !@#$%^&*)
  • No obvious words or patterns

WARNING

Never use simple passwords like "password123" or "admin". These are easy to guess and make your VPS vulnerable to attacks.

Password forgotten or locked out?

If you've forgotten your password or can no longer log into your VPS:

  1. Create a support ticket
  2. Mention that you're locked out of your VPS
  3. Our team will help you regain access

WARNING

There is no automated password reset function via the client panel. Passwords can only be changed via the command line (Linux) or Remote Desktop (Windows). If you have login problems, contact customer service.

Extra security with SSH keys

For even better security, we recommend using SSH keys instead of passwords. Want to know more about this? Feel free to contact us!