๐ In This Guide
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.
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.
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.
Connect via SSH
Now it's time to connect to your new server.
On Mac / Linux:
Open Terminal and run:
ssh root@YOUR_SERVER_IPOn Windows:
Open PowerShell or Command Prompt and run:
ssh root@YOUR_SERVER_IPOr 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.
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 -yCreate a non-root user:
adduser yourusername
usermod -aG sudo yourusernameSet 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.
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 โ