Before you begin
A typical StrataGateway deployment will require a StrataGateway account, an organization or workspace, an SSH key pair, a selected region, a compute plan, and a supported Linux image.
1. Create your account
Create a StrataGateway account and organization before provisioning infrastructure.
Public account registration is not yet available. This section documents the planned onboarding flow.
2. Add an SSH key
SSH keys are recommended because they provide stronger, auditable access without encouraging password-based root login.
Generate SSH key
ssh-keygen -t ed25519 -C "[email protected]"Public key format
The public key will later be added through Settings ? SSH Keys in the planned StrataGateway interface.
Never upload or share your private SSH key.
3. Choose a region
Regions determine where your workload runs and how close it is to users, data sources, and dependent systems.
Planned regions
PlannedChoose the region closest to your users or primary workload whenever latency is important.
4. Create an instance
Preview workflow
The planned console workflow starts in Cloud Compute and continues through the Create Instance flow.
Instance name
web-prod-01
Region
Frankfurt (fra-1)
Image
Ubuntu 24.04 LTS
Plan
Compute Standard
SSH Key
Selected key
Optional
Firewall policy
REST API Preview
curl -X POST "https://api.stratagateway.com/v1/instances" \
-H "Authorization: Bearer $STRATA_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "web-prod-01",
"region": "fra-1",
"plan": "compute-standard",
"image": "ubuntu-24.04-lts",
"ssh_keys": ["key_8f3a9b1c"]
}'Illustrative API preview. Production endpoints and request formats may change before public release.
5. Review your instance
Instance summary
ExampleName
web-prod-01
Status
Running
Region
fra-1
Image
Ubuntu 24.04 LTS
Plan
Compute Standard
IPv4
203.0.113.10
Once provisioning is complete, the control plane will expose the instance IP and lifecycle controls for ongoing management.
Planned lifecycle controls
Planned6. Connect with SSH
Connect with SSH
Connect with explicit key
ssh -i ~/.ssh/id_ed25519 [email protected]The example IP shown here is documentation-only and reserved for examples.
The SSH client may ask you to verify the host fingerprint before connecting.
Verify host fingerprints before trusting a new server.
You're connected.
Once the instance is reachable over SSH, your initial compute deployment is complete.
From here, you can install your application stack, configure networking, attach storage, and automate future deployments through the API or CLI.
Was this page helpful?