Documentation

Getting Started

Deploy your first VPS in under 60 seconds. This guide walks you through everything from signup to your first SSH connection.

1

Create Your Account

Head to our client panel and create your account. You'll need:

  • Valid email address
  • Strong password (12+ characters recommended)
  • Basic contact information

After registration, verify your email to activate your account.

2

Choose a Plan

Select a VPS plan based on your needs:

  • Starter ($5/mo) โ€” Perfect for small projects, development, or learning
  • Pro ($12/mo) โ€” Ideal for growing websites and production apps
  • Business ($28/mo) โ€” High-traffic sites and databases
  • Enterprise ($55/mo) โ€” Maximum resources for demanding applications

๐Ÿ’ก Tip: Not sure which plan? Start with Starter or Pro โ€” you can upgrade anytime with zero downtime.

3

Deploy Your VPS

After payment, you'll be taken to the VPS deployment screen:

  • Choose your operating system (Ubuntu, Debian, CentOS, etc.)
  • Select your preferred version
  • Set a hostname for your server
  • Set your root password (save this somewhere secure!)
  • Click "Deploy" and wait about 60 seconds

Once deployed, you'll receive an email with your server's IP address and login credentials.

4

Connect via SSH

Now it's time to connect to your new server.

On Mac / Linux:

Open Terminal and run:

ssh root@YOUR_SERVER_IP

On Windows:

Open PowerShell or Command Prompt and run:

ssh root@YOUR_SERVER_IP

Or use an SSH client like PuTTY.

When prompted, enter the root password you set during deployment.

โš ๏ธ First-time connection: You'll see a message about the server's authenticity. Type "yes" to continue โ€” this is normal for first connections.

5

Secure Your Server

Before deploying anything, take these essential security steps:

Update your system:

# For Ubuntu/Debian apt update && apt upgrade -y # For CentOS/AlmaLinux dnf update -y

Create a non-root user:

adduser yourusername usermod -aG sudo yourusername

Set up a basic firewall (UFW):

apt install ufw -y ufw allow OpenSSH ufw enable

๐Ÿ’ก Pro tip: Set up SSH key authentication and disable password login for maximum security. Contact support for a detailed guide.

6

Next Steps

Your VPS is ready! Here are some common next steps:

  • Install a web server (Nginx, Apache)
  • Set up a database (MySQL, PostgreSQL)
  • Deploy your application
  • Configure SSL certificates (Let's Encrypt)
  • Set up automated backups

Quick Reference

Need Help?

Our support team is here to help you succeed. Don't hesitate to reach out.

Contact Support โ†’