Quick Start Guide
Go from zero to a running server in less than 5 minutes.
Create an Account & Project
If you haven't already, register for an account.
Upon your first login, you will be guided through our Onboarding Flow. You MUST create a project (Institution) to proceed. This project will be the container for all your future resources.
Add an SSH Key
VyralCloud servers are secure by default and do not support password authentication for the root user. You must use an SSH key.
To generate a key on your local machine:
ssh-keygen -t ed25519 -C "your-email@example.com"
Then copy the public key content:
cat ~/.ssh/id_ed25519.pub
Keep this key ready to paste in the next step.
Launch Your Server
- Navigate to the Servers tab in the dashboard.
- Click the Create Server button.
- Enter a hostname (e.g.,
web-01). - Select an OS Image (e.g., Ubuntu 24.04) and Type (e.g., CX22).
- Paste your SSH Public Key in the text area.
- Click Create Server.
The provisioning process usually takes 10-30 seconds.
Connect!
Once the server status indicator turns green, copy the displayed IP address.
ssh root@<your-server-ip>
Congratulations! You now have full root access to your cloud server.