Skip to Content
Get StartedCompute

Compute

Launch and manage virtual machine instances.

This guide walks you through creating an instance and connecting to it.


1. Create an instance

Go to:

Menu → Compute → Virtual Machines → Create Instance

Create instance

Basic settings

Choose a meaningful name.

Example:

app-web-01
Instance name

Image

Select an operating system image.

Example: Ubuntu

Select image

Flavor

Choose the instance size (CPU, RAM, disk).

Examples:

  • m1.medium
  • m1.large
  • m1.xlarge
Select flavor

Note:
Some images require specific flavors. If the launch button is disabled, try a different flavor.


Storage (optional)

Enable Attach new volume to create persistent storage.

  • Set size in GB
  • Optionally name the volume

See Storage

Attach volume

SSH access

Enable SSH to connect to your instance.

  • Select an existing keypair
  • Or create one → Keypairs

Requirements:

  • A keypair must be selected
  • Security group must allow SSH (port 22)
SSH setup

Security groups

Control network access (firewall rules).

Examples:

  • SSH → port 22
  • Web → ports 80 / 443

See Security Groups

Security groups

Network

Select a private network.

A default network is created automatically.

See Networking

Network selection

Domain

A domain is assigned automatically using the .redu.cloud domain.

You can optionally configure your own custom domain.

Domain configuration

Custom domains:

Configure DNS with your provider:


Configuration script (optional)

Run setup commands on first boot.

Example:

#cloud-config packages: - nginx runcmd: - systemctl enable --now nginx
User data

Launch

Review the summary and click Launch.


2. Manage instances

Go to:

Menu → Compute → Virtual Machines → Instances

Instances list

Available actions:

  • Manage DNS
  • Delete instance

3. Connect via SSH

If SSH is enabled and a keypair is selected:

ssh -p <port> ubuntu@<host>

You can copy the command directly from the UI.


Troubleshooting

Launch button disabled

  • Missing required fields
  • Unsupported image/flavor combination

SSH not working

  • A keypair must be selected
  • Security group must allow port 22

Network missing

Create one in Networking


Last updated on