Skip to content

Security Group

For Uptime Kuma, you need to open the port 3001 and 22, for that create the following security group:

openstack security group create --description "Uptime Kuma (3001)" Uptime-Kuma
openstack security group rule create --dst-port 3001 --protocol TCP Uptime-Kuma
openstack security group rule create --dst-port 22 --protocol TCP Uptime-Kuma

For Uptime Kuma, you need to open the port 3001 and 22, for that create the following security group. Go to Network > Security Groups and click on Create Security Group: kuma-1.png

Name your security group:

kuma-2.png

Add the rule for port 22:

kuma-3.png

Add the rule for port 3001:

kuma-4.png

Instance

You can create the instance with the following command:

openstack server create --image "Debian 11 bullseye" --flavor a1-ram2-disk20-perf1 --security-group "Uptime-Kuma" --network ext-net1 Uptime-Kuma

Check the status of the instance and retrieve the IP address with:

openstack server show Uptime-Kuma

Go to Compute > Instances and click on Launch Instance:

kuma-5.png

Name your instance:

kuma-6.png

In the Source tab, select a Debian image:

kuma-7.png

In the Flavor tab, select flavor a1-ram2-disk20-perf1:

kuma-8.png

In the Networks tab, select network ext-net1:

kuma-9.png

In the Security Groups tab, select the previously created security group:

kuma-10.png

In the Key Pair tab, select your keypair and click on Launch Instance:

kuma-11.png