What even is a VPS?
A VPS is your own computer — but it doesn't sit on your desk.
It lives inside a giant building full of computers, somewhere out in the world. It's switched on all day and all night, forever. Nobody else uses it. It's yours to boss around.
VPS is short for Virtual Private Server. That's just a fancy way of saying: your own always-on computer, out there.
What's in the box?
Nobody hands you an actual box. They hand you three little secrets. That's everything you need to find your computer and get inside it.
The Address
A number like 203.0.113.45. That's where your computer lives on the internet — like a house address, but for a machine.
The Name
You log in as root. Root is the boss — it can do anything on the machine. (Big power, so we're careful with it later.)
The Secret
A password, or a special key file. It proves the computer is really yours, and not a stranger's.
How do you boss it around?
You type magic words into a little black window — and the far-away computer does what you say.
The magic word is SSH. Open PowerShell (you already know that one!), type ssh root@ and the address, then give your secret. Boom — now everything you type is happening on the far-away machine, not on yours.
PS C:\> ssh root@203.0.113.45
root@203.0.113.45's password: ••••••
Welcome! You're in. 🎉
root@my-vps:~#
No mouse. No windows to click. Just words. It honestly feels like magic the first time it works.
Can I put my files on it? (Is there FTP?)
Yes — and it's the part you already know how to do.
You won't use plain FTP. You'll use its cooler cousin, SFTP. It sends your files through that same secret tunnel, all locked up safe on the way.
Best bit: the upload program you already use can do it. You just:
- 1Pick SFTP instead of FTP.
- 2Type in the address and your login.
- 3Drag your files across — same as always.
Where the adventure goes next
Getting in is just stop one. Here's the whole trail — we'll explore each spot together, one at a time.
You're an explorer now. 🧭
First stop on the trail: getting inside your very own machine.
Next up → Stop 1: Get your VPSMy Very First VPS · a learn-it-then-share-it field guide