Server Management

Monitor, restart, and manage your VPS

Control Panel

Access your VPS control panel at panel.polymarketvps.com to:

  • View server status and resource usage
  • Restart or rebuild your VPS
  • Manage backups and snapshots
  • Update billing and plan information

Monitoring Resources

Check your VPS resource usage via SSH:

# CPU and memory usage
htop

# Disk usage
df -h

# Network connections
netstat -tuln

# Running processes
ps aux

Process Management with PM2

PM2 keeps your trading bots running 24/7:

# Start a bot
pm2 start bot.py --name "polymarket-bot"

# View running processes
pm2 list

# View logs
pm2 logs polymarket-bot

# Restart a bot
pm2 restart polymarket-bot

# Stop a bot
pm2 stop polymarket-bot

# Auto-start on reboot
pm2 startup
pm2 save

Backups

We automatically backup your VPS daily. You can also create manual snapshots from the control panel before making major changes.

Manual Backup Commands

# Backup your trading bots
tar -czvf backup-$(date +%Y%m%d).tar.gz ~/bots/

# Download backup to local machine
scp trader@your-vps-ip:~/backup-*.tar.gz ./

Upgrading Your Plan

To upgrade your VPS plan, visit the control panel and select "Upgrade Plan". Your server will be migrated to new hardware with minimal downtime (usually under 2 minutes).