How do I log into my VPS?
Great that you're interested in a VPS with us, here we explain how you can log into your VPS.
With the following steps you'll be able to log into your brand new, super fast VPS at PlanetNode:
Step 1: Get your VPS credentials
You need the following information to log in:
- Primary IP: The IP address of your VPS
- Username: Your username (for example
ubuntu
for Ubuntu,debian
for Debian, etc.) - Password: Your password
You can find these details in two places:
- In the email you received after purchasing your VPS
- On my.planetnode.net under your VPS service
INFO
The username depends on the operating system:
- Ubuntu:
ubuntu
- Debian:
debian
- AlmaLinux/Rocky Linux:
almalinux
orrocky
- For other systems, check your email or my.planetnode.net
Step 2: Install an SSH client
Do you already have an SSH client installed?
- Windows: Install PuTTY or use Windows Terminal (Windows 10/11)
- macOS/Linux: SSH is already available by default via Terminal
Step 3: Connect
For Windows (PuTTY)
- Open PuTTY
- Paste the IP address in the "Host Name (or IP address)" field
- Make sure port
22
is set and the type isSSH
- Click "Open"
- Enter your username (found on my.planetnode.net)
- Enter your password (it won't be displayed while you type)
For macOS/Linux (Terminal)
- Open Terminal
- Type the following command (replace
USERNAME
andIP_ADDRESS
with your details):
ssh USERNAME@IP_ADDRESS
- The first time you'll get a security warning, type
yes
and press Enter - Enter your password
Step 4: You're connected!
You're now logged into your VPS. You'll see a command prompt where you can enter commands.
TIP
For Debian, Ubuntu and similar distributions, you log in with a regular user. Use sudo
for commands that require administrator rights, for example:
sudo apt update
If you need to run multiple commands as root, it's more convenient to temporarily switch to a root shell. This prevents having to type sudo
before every command:
sudo su -
# or
sudo -i
Both commands give you a root shell with root's environment variables:
sudo -i
: Simulates a direct login as root (more modern and faster)sudo su -
: Executes thesu -
command as root (traditional method)
In practice they do the same thing, sudo -i
is slightly more direct.
TIP
For extra security, we recommend using SSH keys instead of passwords. This is much safer! Contact us via a support ticket or our Discord if you need help with this.
Common problems
"Connection refused"
Your VPS may be turned off. Check the status on my.planetnode.net and start your VPS if needed.
"Permission denied"
Check if your username and password are correct. You can reset your password via the client panel.
INFO
If you still can't figure it out, we're happy to help via a support ticket, our Discord or by phone!