← Back to Quick Start Guides
Create Your First Server
Follow this step-by-step guide to launch your first cloud server on Nexaira
Beginner
~10 minutes
1
Sign Up and Login
Create your Nexaira account and access the console
Tips
- Use a strong password
- Enable 2FA for security
2
Navigate to Compute
Go to the Compute section in the dashboard
Tips
- Familiarize yourself with the interface
3
Create Server
Click "Create Server" and choose your configuration
Tips
- Start with a small instance for testing
- Choose a region close to your users
- Select an OS you're familiar with
4
Configure SSH Key
Add your SSH public key for secure access
Commands
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"$ cat ~/.ssh/id_rsa.pubTips
- Never share your private key
- Use different keys for different servers
5
Launch Server
Review settings and launch your server
Tips
- Note down your server IP address
- Wait 2-3 minutes for the server to boot
6
Connect to Server
SSH into your new server
Commands
$ ssh root@your-server-ipTips
- Update your system: apt update && apt upgrade
🎉 Congratulations!
You've successfully created your first server