Quick start
Deploy your first virtual machine in a few minutes. Three steps: sign up, create the VM, connect.
Overview
A default router and a default private network are created for you on first login, so there is no networking homework before the first VM. Here's the whole path:
Sign up
GitHub or Google login. Default router and network are provisioned automatically
Create VM
Pick hardware, profile, disk and OS in one wizard
Connect
SSH into your server, or open the web console
Step 1: sign up
ServersCamp uses passwordless authentication. Your first login creates your account automatically.
Login options
- GitHub - Click "Continue with GitHub" to authenticate
- Google - Click "Continue with Google" to authenticate
Once authenticated, you can optionally set a password or continue with passwordless login: we send a one-time PIN to your email.
What you start with
On first login the platform provisions your networking baseline automatically:
- A default router - your internet gateway, with public IPv4 and IPv6
- A default private network - already attached to the router, ready for VMs
You can build your own topology later (see networks and routers); for the first VM the defaults are all you need.
Step 2: create your virtual machine
- Navigate to Virtual Machines in the sidebar
- Click Create VM
- Fill in the configuration form
- Review the price estimate
- Click Create
Configuration options
Name
Optional display name for your VM. If left empty, a random name will be generated (e.g., silly-muffin-52).
Operating system
Select your OS from available templates: Ubuntu and Debian releases, with more images added over time.
Hardware and compute profile
Two choices define the compute:
| Choice | Options | What it means |
|---|---|---|
| Hardware | Basic / High Frequency | Basic is proven server hardware for everyday workloads. High Frequency runs the fastest x86 single cores available, about 3x the per-core speed. |
| Compute profile | Burst / Sustained | Burst runs at full speed by default and yields first when a host is under full load, and it is cheaper. Sustained keeps top scheduling priority at all times. |
Then pick a size: from 1 vCPU / 1 GB up. Prices on the Compute pricing page.
Disk
Pick a disk class first (Basic covers most cases; Database for transactional databases; Solo for caches and scratch; Storage for bulk data), then a size. The first 25 GB of the Basic-class root disk are free. Details and exact limits: Block Storage pricing.
Traffic
There is nothing to configure: every VM gets an unthrottled multi-gigabit port with 5 TB of external and 50 TB of internal traffic included per month.
Network
Your default network is preselected. The VM receives a private IP from it, and internet access works through the default router immediately.
SSH key (recommended)
Select an existing SSH key or generate a new one. SSH key authentication is more secure than passwords.
- Upload existing - Use your
~/.ssh/id_rsa.pub - Generate new - We'll create a key pair for you
Root password (optional)
Set a password for the scamp user. You can use both SSH key and password.
Step 3: connect to your VM
Your VM is ready! Here's how to connect.
Find your VM's IP address
- Go to Virtual Machines
- Click on your VM to see details
- Copy the Public IPv4 address
Connect via SSH
Open your terminal and connect:
ssh scamp@YOUR_PUBLIC_IP
If you generated an SSH key through ServersCamp, download it first:
chmod 600 ~/Downloads/your-key.pem
ssh -i ~/Downloads/your-key.pem scamp@YOUR_PUBLIC_IP
There is also a browser-based console that works without SSH or a public IP: the full picture is in Connect to your VM.