VPS Setup (DigitalOcean)
This guide uses DigitalOcean. If you already have a Ubuntu 24.04 server, skip to Installation →.
1. Create a DigitalOcean account
Go to digitalocean.com and sign up. You'll need a credit card or PayPal.
2. Create a Droplet
- Click Create → Droplets
- Choose region: Singapore or Frankfurt (low latency to Binance)
- Choose image: Ubuntu 24.04 LTS
- Choose size: Basic — $6/month (1 vCPU, 1 GB RAM)
- Authentication: SSH Key (recommended) or Password
- Click Create Droplet
Your droplet will be ready in about 60 seconds. You'll see its IP address on the dashboard.
3. Connect via SSH
Open a terminal (Mac/Linux) or PuTTY (Windows) and connect:
ssh root@YOUR_SERVER_IP
Replace YOUR_SERVER_IP with the IP shown on your DigitalOcean dashboard.
If you used a password during creation, type it when prompted. If you used an SSH key, it connects automatically.
Windows users
On Windows 10/11, you can use the built-in terminal:
- Press
Win + R, typecmd, press Enter - Run
ssh root@YOUR_SERVER_IP
4. Update the server
Run these two commands after connecting. They update all system packages:
apt update && apt upgrade -y
This takes 1–2 minutes. When it finishes, your server is ready for installation.