How to Connect to Your Linux Server (SSH)
You can access your Linux server from Windows using two simple methods: either with the built-in Command Prompt or using the PuTTY SSH client.
⚡ Method 1 — Using Windows Command Prompt (CMD)
Windows has a built-in SSH client you can use directly from the terminal — no extra software needed.
- Press
Windows + R
, typecmd
, then hit Enter. - In the terminal window, type the following command:
ssh root@your.server.ip -p your_port
📝 Replace:
your.server.ip
with the IP address of your serveryour_port
with the correct SSH port (default is usually22
)
- Press Enter.
- You’ll be asked to enter your SSH password — paste it and press Enter (nothing will show while typing, it's normal).
✅ Done! You’re now connected to your server via CMD.
🪟 Method 2 — Using PuTTY
PuTTY is a lightweight and trusted SSH tool.
- Download PuTTY here
- Open PuTTY.
- In the Host Name (or IP address) field, enter your server IP.
- Set the Port to your server’s SSH port (default:
22
). - Click Open. You’ll see a terminal window asking for your login:
login as:
- Enter your username (
root
by default) and press Enter. - Right-click to paste your SSH password (copied from your email), then press Enter again.
🎉 You’re connected!
If you're having trouble with either method, make sure your login details are correct and that your server is online. Still stuck? Reach out — we're happy to help!Updated on: 03/04/2025
Thank you!