<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.stoney-cloud.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sst-ska</id>
	<title>MediaWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.stoney-cloud.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sst-ska"/>
	<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/wiki/Special:Contributions/Sst-ska"/>
	<updated>2026-07-10T20:24:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=Kopia_restore_process&amp;diff=1061</id>
		<title>Kopia restore process</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=Kopia_restore_process&amp;diff=1061"/>
		<updated>2026-06-04T09:43:05Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the process of restoring instance data from a Kopia backup.&lt;br /&gt;
= Connecting a backup repository =&lt;br /&gt;
Before data can be restored from a backup, the appropriate Kopia repository needs to be connected to. &lt;br /&gt;
&lt;br /&gt;
The repository connection details are stored locally on the server that is being backed up. &lt;br /&gt;
Each server contains the credentials and configuration required to access its own Kopia repository.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First connect to the server:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# For example: ssh sst-int-001&lt;br /&gt;
ssh &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then set the path leading to the access information as a variable:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# For example: file=/home/sst-all/access.yaml&lt;br /&gt;
file=&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set the required access parameters as variables:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
endpoint=$(awk -F&#039;: &#039; &#039;/^[[:space:]]*endpoint:/ {gsub(/&amp;quot;/,&amp;quot;&amp;quot;,$2); print $2}&#039; &amp;quot;$file&amp;quot;)&lt;br /&gt;
bucket=$(awk -F&#039;: &#039; &#039;/^[[:space:]]*bucket:/ {gsub(/&amp;quot;/,&amp;quot;&amp;quot;,$2); print $2}&#039; &amp;quot;$file&amp;quot;)&lt;br /&gt;
prefix=$(awk -F&#039;: &#039; &#039;/^[[:space:]]*prefix:/ {gsub(/&amp;quot;/,&amp;quot;&amp;quot;,$2); print $2}&#039; &amp;quot;$file&amp;quot;)&lt;br /&gt;
access_key=$(awk -F&#039;: &#039; &#039;/^[[:space:]]*access_key:/ {gsub(/&amp;quot;/,&amp;quot;&amp;quot;,$2); print $2}&#039; &amp;quot;$file&amp;quot;)&lt;br /&gt;
secret_access_key=$(awk -F&#039;: &#039; &#039;/^[[:space:]]*secret_access_key:/ {gsub(/&amp;quot;/,&amp;quot;&amp;quot;,$2); print $2}&#039; &amp;quot;$file&amp;quot;)&lt;br /&gt;
password=$(awk -F&#039;: &#039; &#039;/^[[:space:]]*password:/ {gsub(/&amp;quot;/,&amp;quot;&amp;quot;,$2); print $2}&#039; &amp;quot;$file&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check the created variables like so:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cat &amp;lt;&amp;lt;EOF&lt;br /&gt;
S3_ENDPOINT=&amp;quot;$endpoint&amp;quot;&lt;br /&gt;
S3_BUCKET=&amp;quot;$bucket&amp;quot;&lt;br /&gt;
S3_PREFIX=&amp;quot;$prefix&amp;quot;&lt;br /&gt;
S3_ACCESS_KEY=&amp;quot;$access_key&amp;quot;&lt;br /&gt;
S3_SECRET_ACCESS_KEY=&amp;quot;$secret_access_key&amp;quot;&lt;br /&gt;
KOPIA_PASSWORD=&amp;quot;$password&amp;quot;&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If everything looks fine connect to the repository:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
kopia repo connect s3 \&lt;br /&gt;
  --readonly \&lt;br /&gt;
  --endpoint=&amp;quot;$endpoint&amp;quot; \&lt;br /&gt;
  --bucket=&amp;quot;$bucket&amp;quot; \&lt;br /&gt;
  --prefix=&amp;quot;$prefix&amp;quot; \&lt;br /&gt;
  --access-key=&amp;quot;$access_key&amp;quot; \&lt;br /&gt;
  --secret-access-key=&amp;quot;$secret_access_key&amp;quot; \&lt;br /&gt;
  --password=&amp;quot;$password&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|collapsed=true|title=Output:|content=&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
Connected to repository.&lt;br /&gt;
&lt;br /&gt;
NOTICE: Kopia will check for updates on GitHub every 7 days, starting 24 hours after first use.&lt;br /&gt;
To disable this behavior, set environment variable KOPIA_CHECK_FOR_UPDATES=false&lt;br /&gt;
Alternatively you can remove the file &amp;quot;/root/.config/kopia/repository.config.update-info.json&amp;quot;.&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
= Inspecting data =&lt;br /&gt;
After connecting to the repository snapshots can be listed like so:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
kopia snapshot list --all --show-identical&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Usually each mountpoint has it&#039;s own snapshots:&lt;br /&gt;
{{Note|collapsed=true|title=Output:|content=&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;, highlight=1,13,25,37,49 &amp;gt;&lt;br /&gt;
root@sst-int-001:/etc&lt;br /&gt;
  2026-05-26 03:04:27 CEST k2d1601c231eed28510d797778b27091c 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-10)&lt;br /&gt;
  2026-05-27 03:04:21 CEST kd8f190358cfdf77b226c69b34b19246c 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-9)&lt;br /&gt;
  2026-05-28 03:04:33 CEST ke0aee9e74790d6b1e79d4b2816f05254 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-8)&lt;br /&gt;
  2026-05-29 03:04:25 CEST ka20e158f4e52335ae06379a65f14fc9b 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-7)&lt;br /&gt;
  2026-05-30 03:04:27 CEST k41338685d0d45becad4bebf977a1b2b0 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-6)&lt;br /&gt;
  2026-05-31 03:04:20 CEST k4581635f5244edc6d30640277ff40de1 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-5)&lt;br /&gt;
  2026-06-01 03:04:48 CEST k8f65195a4d1cababcfb265f0c190077d 27.1 MB drwxr-xr-x files:1430 dirs:444 (daily-4)&lt;br /&gt;
  2026-06-02 03:04:21 CEST k73777c3e3acd749f829ab8c43f3e60ac 27.1 MB drwxr-xr-x files:1430 dirs:444 (latest-3,daily-3)&lt;br /&gt;
  2026-06-03 03:04:29 CEST k8c532d7558940d3dd32cc85c57dd0af5 27.1 MB drwxr-xr-x files:1430 dirs:444 (latest-2,daily-2)&lt;br /&gt;
  2026-06-04 03:04:25 CEST k60796ced54c59316191b355f58d91d98 27.1 MB drwxr-xr-x files:1430 dirs:444 (latest-1,daily-1)&lt;br /&gt;
&lt;br /&gt;
root@sst-int-001:/home&lt;br /&gt;
  2026-05-26 03:04:35 CEST k85a74d754790d64a0fa17017d23d3649 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-10)&lt;br /&gt;
  2026-05-27 03:04:29 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-9)&lt;br /&gt;
  2026-05-28 03:04:41 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-8)&lt;br /&gt;
  2026-05-29 03:04:33 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-7)&lt;br /&gt;
  2026-05-30 03:04:35 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-6)&lt;br /&gt;
  2026-05-31 03:04:27 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-5)&lt;br /&gt;
  2026-06-01 03:05:05 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (daily-4)&lt;br /&gt;
  2026-06-02 03:04:29 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (latest-3,daily-3)&lt;br /&gt;
  2026-06-03 03:04:37 CEST kbc9814f2c1a8fb94eef77161da59e748 1.9 MB drwxr-xr-x files:257 dirs:68 (latest-2,daily-2)&lt;br /&gt;
  2026-06-04 03:04:34 CEST ke55e94ac077bd393838a2b229551c8a9 1.9 MB drwxr-xr-x files:258 dirs:69 (latest-1,daily-1)&lt;br /&gt;
&lt;br /&gt;
root@sst-int-001:/usr/local&lt;br /&gt;
  2026-05-26 03:04:36 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-10)&lt;br /&gt;
  2026-05-27 03:04:30 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-9)&lt;br /&gt;
  2026-05-28 03:04:42 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-8)&lt;br /&gt;
  2026-05-29 03:04:35 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-7)&lt;br /&gt;
  2026-05-30 03:04:36 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-6)&lt;br /&gt;
  2026-05-31 03:04:28 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-5)&lt;br /&gt;
  2026-06-01 03:05:06 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (daily-4)&lt;br /&gt;
  2026-06-02 03:04:30 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (latest-3,daily-3)&lt;br /&gt;
  2026-06-03 03:04:38 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (latest-2,daily-2)&lt;br /&gt;
  2026-06-04 03:04:35 CEST k75894f3af04c9479f86f6ea31808b302 22 KB drwxr-xr-x files:8 dirs:36 (latest-1,daily-1)&lt;br /&gt;
&lt;br /&gt;
root@sst-int-001:/var/backup&lt;br /&gt;
  2026-05-26 03:04:38 CEST k737253d9ce3c4889faba67709bd54c30 3.2 GB drwxr-xr-x files:138 dirs:6 (daily-10)&lt;br /&gt;
  2026-05-27 03:04:32 CEST k1df55cad1be2d85dd3c8b1086161a321 3.5 GB drwxr-xr-x files:139 dirs:6 (daily-9)&lt;br /&gt;
  2026-05-28 03:04:43 CEST keb7f9d4a5c1908539d2f818c2863f6e5 3.2 GB drwxr-xr-x files:138 dirs:6 (daily-8)&lt;br /&gt;
  2026-05-29 03:04:37 CEST k76863a5b41c3d70701a43f3a7f56b7b7 3.2 GB drwxr-xr-x files:138 dirs:6 (daily-7)&lt;br /&gt;
  2026-05-30 03:04:38 CEST k0f6b31464daafe6e6d98ec4933148723 3.2 GB drwxr-xr-x files:138 dirs:6 (daily-6)&lt;br /&gt;
  2026-05-31 03:04:30 CEST k9128bd6dae323cb7f82534e96ffe312d 3.5 GB drwxr-xr-x files:139 dirs:6 (daily-5)&lt;br /&gt;
  2026-06-01 03:05:08 CEST k0789f3fe1645403d65daf45d2dca8b95 3.5 GB drwxr-xr-x files:139 dirs:6 (daily-4)&lt;br /&gt;
  2026-06-02 03:04:31 CEST k906b99f37cadf4c9d645ec0e3a027805 3.2 GB drwxr-xr-x files:138 dirs:6 (latest-3,daily-3)&lt;br /&gt;
  2026-06-03 03:04:39 CEST ke6ed15e1dd24e8d4f7c3af45cebb2b35 3.2 GB drwxr-xr-x files:138 dirs:6 (latest-2,daily-2)&lt;br /&gt;
  2026-06-04 03:04:36 CEST k19beeb2a7ee4d720fcebd7865ec63600 3.2 GB drwxr-xr-x files:138 dirs:6 (latest-1,daily-1)&lt;br /&gt;
&lt;br /&gt;
root@sst-int-001:/var/db&lt;br /&gt;
  2026-05-26 03:04:26 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-10)&lt;br /&gt;
  2026-05-27 03:04:20 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-9)&lt;br /&gt;
  2026-05-28 03:04:31 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-8)&lt;br /&gt;
  2026-05-29 03:04:23 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-7)&lt;br /&gt;
  2026-05-30 03:04:26 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-6)&lt;br /&gt;
  2026-05-31 03:04:19 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-5)&lt;br /&gt;
  2026-06-01 03:04:47 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (daily-4)&lt;br /&gt;
  2026-06-02 03:04:20 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (latest-3,daily-3)&lt;br /&gt;
  2026-06-03 03:04:27 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (latest-2,daily-2)&lt;br /&gt;
  2026-06-04 03:04:24 CEST k8532c690ec118016f2daaf1f072f7b72 0 B drwxr-xr-x files:0 dirs:3 (latest-1,daily-1)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To inspect or restore a snapshot set it&#039;s ID as a variable:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# For example: snapshot=&#039;k85a74d754790d64a0fa17017d23d3649&#039;&lt;br /&gt;
snapshot=&#039;&#039;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Taking a look at the snapshot&#039;s contents:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
kopia ls ${snapshot}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|collapsed=true|title=Output:|content=&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
almalinux&lt;br /&gt;
sst-yyy&lt;br /&gt;
sst-xxx&lt;br /&gt;
certbot&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
We can look into the folders, like so: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
kopia ls ${snapshot}/sst-xxx&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Restoring data =&lt;br /&gt;
&lt;br /&gt;
To restore a single file: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Restore a file inside a snapshot to a destination&lt;br /&gt;
kopia restore ${snapshot}/home/sst-xxx/example.txt /var/tmp/example.txt&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|collapsed=true|title=Output:|content=&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
Restoring to local filesystem (/var/tmp/example.txt) with parallelism=8...&lt;br /&gt;
Processed 1 (2.2 MB) of 0 (0 B).&lt;br /&gt;
Restored 1 files, 0 directories and 0 symbolic links (2.2 MB).&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
To restore the entire snapshot: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a destination directory or use an existing one&lt;br /&gt;
mkdir /var/tmp/restore&lt;br /&gt;
&lt;br /&gt;
# Restore the snapshot to the destination&lt;br /&gt;
kopia restore ${snapshot} /var/tmp/restore/&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|collapsed=true|title=Output:|content=&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
Restoring to local filesystem (/var/tmp/restore) with parallelism=8...&lt;br /&gt;
Processed 3297 (3 GB) of 3296 (3 GB) 56.5 MB/s (100.0%) remaining 0s.    &lt;br /&gt;
Restored 2950 files, 347 directories and 0 symbolic links (3 GB).&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Backup]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=Category:Backup&amp;diff=1060</id>
		<title>Category:Backup</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=Category:Backup&amp;diff=1060"/>
		<updated>2026-06-04T09:42:29Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=Kopia_restore_process&amp;diff=1059</id>
		<title>Kopia restore process</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=Kopia_restore_process&amp;diff=1059"/>
		<updated>2026-06-04T09:42:20Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Created page with &amp;quot;Category: Backup&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Backup]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=Main_Page&amp;diff=1058</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=Main_Page&amp;diff=1058"/>
		<updated>2026-06-04T09:41:57Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;float:left; width:48%;&amp;quot;&amp;gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Welcome to the wiki of our [https://www.openstack.org/ OpenStack] based [https://www.stoney-cloud.com/ stoney cloud] infrastructure.&lt;br /&gt;
This collection serves as a comprehensive resource for all aspects of our cloud environment. Here, you will find guides for managing and utilizing our stoney cloud.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
[[Quickstart]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width:48%&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
[[:Category:Projects|Projects]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Instances|Instances]]&lt;br /&gt;
* [[VM creation (Linux)]]&lt;br /&gt;
* [[VM creation (Windows)]]&lt;br /&gt;
* [[VM resize (Linux)]]&lt;br /&gt;
* [[VM resize (Windows)]]&lt;br /&gt;
* [[Flavor explanation]]&lt;br /&gt;
[[:Category:Volumes|Volumes]]&lt;br /&gt;
* [[Quota]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Images|Images]]&lt;br /&gt;
* [[Image creation]]&lt;br /&gt;
[[:Category:Network|Network]]&lt;br /&gt;
* [[Security group rules]]&lt;br /&gt;
* [[IP usage]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Object store|Object store]]&lt;br /&gt;
* [[S3 buckets]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Kubernetes|Kubernetes]]&lt;br /&gt;
* [[Kubernetes management]]&lt;br /&gt;
* [[Kubernetes usage]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:AI on demand|AI on demand]]&lt;br /&gt;
* [[AI on demand: Usage]] (list models, show usage, ...)&lt;br /&gt;
* [[AI on demand: BAAI/bge-m3]]&lt;br /&gt;
* [[AI on demand: BAAI/bge-reranker-v2-m3]]&lt;br /&gt;
* [[AI on demand: MiniMaxAI/MiniMax-M2.5]]&lt;br /&gt;
* [[AI on demand: NVIDIA/NVIDIA-Nemotron-3-Super-120B-A12B]]&lt;br /&gt;
* [[AI on demand: Qwen/Qwen3-Coder-Next]]&lt;br /&gt;
* [[AI on demand: Qwen/Qwen3.5-35B-A3B-FP8]]&lt;br /&gt;
* [[AI on demand: allenai/olmOCR-2-7B]]&lt;br /&gt;
* [[AI on demand: lightonai/LightOnOCR-2-1B]]&lt;br /&gt;
* [[AI on demand: mistralai/Voxtral-Mini-3B-2507]]&lt;br /&gt;
* [[AI on demand: openai/whisper-large-v3]]&lt;br /&gt;
* [[AI on demand: opendatalab/MinerU2.5-2509-1.2B]]&lt;br /&gt;
* &amp;lt;s&amp;gt;[[AI on demand: swiss-ai/Apertus-70B-Instruct-2509]]&amp;lt;/s&amp;gt; (discontinued since the 7th of May 2026!)&lt;br /&gt;
&lt;br /&gt;
[[:Category:Backup|Backup]]&lt;br /&gt;
* [[Kopia restore process]]&lt;br /&gt;
[[:Category:Troubleshooting|Troubleshooting]]&lt;br /&gt;
* [[PCI workaround]]&lt;br /&gt;
* [[Change user password]]&lt;br /&gt;
&lt;br /&gt;
== Quick links ==&lt;br /&gt;
* [https://www.stoney-cloud.com/ stoney cloud Website]&lt;br /&gt;
* [https://dashboard.stoney-cloud.com/ stoney cloud Dashboard]&lt;br /&gt;
* [https://docs.openstack.org/horizon/latest/user/index.html Official OpenStack Dashboard Documentation]&lt;br /&gt;
* [https://docs.openstack.org/python-openstackclient/latest/cli/index.html Official OpenStack CLI Documentation]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both; height:0px; line-height:0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=912</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=912"/>
		<updated>2025-06-25T14:50:56Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|none|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|none|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. &lt;br /&gt;
&lt;br /&gt;
Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|none|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. &lt;br /&gt;
&lt;br /&gt;
There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|none|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|none|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|none|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. &lt;br /&gt;
&lt;br /&gt;
If a server uses more than one floating IP it&#039;s possible to chose the right one here. &lt;br /&gt;
&lt;br /&gt;
If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|none|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=911</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=911"/>
		<updated>2025-06-25T14:50:14Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|none|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|none|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. &lt;br /&gt;
&lt;br /&gt;
Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|none|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. &lt;br /&gt;
There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|none|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|none|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|none|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. &lt;br /&gt;
&lt;br /&gt;
If a server uses more than one floating IP it&#039;s possible to chose the right one here. &lt;br /&gt;
&lt;br /&gt;
If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|none|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=910</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=910"/>
		<updated>2025-06-25T14:48:48Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|none|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|none|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|none|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|none|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|none|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|none|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|none|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=909</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=909"/>
		<updated>2025-06-25T14:46:38Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|600px|frame]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|600px|frame]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|600px|frame]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|600px|frame]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|600px|frame]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|600px|frame]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|600px|frame]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=908</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=908"/>
		<updated>2025-06-25T14:45:48Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|frame|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|frame|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|frame|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|frame|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|frame|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|frame|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|frame|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=907</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=907"/>
		<updated>2025-06-25T14:44:57Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|frameless|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|frameless|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|frameless|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|frameless|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|frameless|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|frameless|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|frameless|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=906</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=906"/>
		<updated>2025-06-25T14:44:01Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|frame|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|frame|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|frame|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=905</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=905"/>
		<updated>2025-06-25T14:41:47Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=904</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=904"/>
		<updated>2025-06-25T14:41:07Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|thumb|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|thumb|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|thumb|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|thumb|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|thumb|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|thumb|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=903</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=903"/>
		<updated>2025-06-25T14:37:50Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
Select the right project by clicking on the &#039;&#039;&#039;current project (1)&#039;&#039;&#039; and selecting the &#039;&#039;&#039;project you want to work with (2)&#039;&#039;&#039;.&lt;br /&gt;
[[File:IP usage 1.png|600px]]&lt;br /&gt;
After that navigate to &#039;&#039;&#039;Network (1) -&amp;gt; Floating IP&#039;s (2)&#039;&#039;&#039;. Click on the &#039;&#039;&#039;Button next to Associate (3)&#039;&#039;&#039; to associate this IP to a server.&lt;br /&gt;
[[File:IP usage 2.png|600px]]&lt;br /&gt;
In the pop-up select the &#039;&#039;&#039;port (1)&#039;&#039;&#039; you want to associate the chosen floating IP to. Usually ports are named after their server. After that &#039;&#039;&#039;Associate (2)&#039;&#039;&#039; the floating IP.&lt;br /&gt;
[[File:IP usage 3.png|600px]]&lt;br /&gt;
If a floating IP is associated to a server it will appear as such in the Floating IP&#039;s menu. There the Mapped Fixed IP Address Attribute shows the server which uses the floating IP.&lt;br /&gt;
[[File:IP usage 7.png|600px]]&lt;br /&gt;
To disassociate a floating IP you need to change to &#039;&#039;&#039;Instances (1)&#039;&#039;&#039;. There it is possible to search for an instance using it&#039;s attributes as a filter. In this example I searched for the &#039;&#039;&#039;instance name (2)&#039;&#039;&#039;. On the displayed instance overview we can now open the &#039;&#039;&#039;submenu (3)&#039;&#039;&#039; to perform quick actions.&lt;br /&gt;
[[File:IP usage 4.png|600px]]&lt;br /&gt;
There you can chose &#039;&#039;&#039;Disassociate Floating IP (1)&#039;&#039;&#039;. &lt;br /&gt;
[[File:IP usage 5.png|600px]]&lt;br /&gt;
This opens a pop-up window with an overview of our planned action. If a server uses more than one floating IP it&#039;s possible to chose the right one here. If you&#039;re positive press &#039;&#039;&#039;Dissociate&#039;&#039;&#039;. This will remove the floating IP from the server.&lt;br /&gt;
[[File:IP usage 6.png|600px]]&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=902</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=902"/>
		<updated>2025-06-25T14:23:35Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
[[File:IP usage 1.png|600px]]&lt;br /&gt;
[[File:IP usage 2.png|600px]]&lt;br /&gt;
[[File:IP usage 3.png|600px]]&lt;br /&gt;
[[File:IP usage 4.png|600px]]&lt;br /&gt;
[[File:IP usage 5.png|600px]]&lt;br /&gt;
[[File:IP usage 6.png|600px]]&lt;br /&gt;
[[File:IP usage 7.png|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_6.png&amp;diff=901</id>
		<title>File:IP usage 6.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_6.png&amp;diff=901"/>
		<updated>2025-06-25T14:22:01Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:IP usage 6.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_5.png&amp;diff=900</id>
		<title>File:IP usage 5.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_5.png&amp;diff=900"/>
		<updated>2025-06-25T14:21:48Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:IP usage 5.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_4.png&amp;diff=899</id>
		<title>File:IP usage 4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_4.png&amp;diff=899"/>
		<updated>2025-06-25T14:21:39Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:IP usage 4.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_3.png&amp;diff=898</id>
		<title>File:IP usage 3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_3.png&amp;diff=898"/>
		<updated>2025-06-25T14:21:28Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:IP usage 3.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_2.png&amp;diff=897</id>
		<title>File:IP usage 2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_2.png&amp;diff=897"/>
		<updated>2025-06-25T14:21:20Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:IP usage 2.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_1.png&amp;diff=896</id>
		<title>File:IP usage 1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_1.png&amp;diff=896"/>
		<updated>2025-06-25T14:21:10Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:IP usage 1.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=895</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=895"/>
		<updated>2025-06-25T14:06:34Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
[[File:IP usage 1.png|800px]]&lt;br /&gt;
[[File:IP usage 2.png|800px]]&lt;br /&gt;
[[File:IP usage 3.png|800px]]&lt;br /&gt;
[[File:IP usage 4.png|800px]]&lt;br /&gt;
[[File:IP usage 5.png|800px]]&lt;br /&gt;
[[File:IP usage 6.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=894</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=894"/>
		<updated>2025-06-25T14:05:59Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
[[File:IP usage 1.png|800px]]&lt;br /&gt;
[[File:IP usage 2.png|800px]]&lt;br /&gt;
[[File:IP usage 3.png|800px]]&lt;br /&gt;
[[File:IP usage 4.png|800px]]&lt;br /&gt;
[[File:IP usage 5.png|800px]]&lt;br /&gt;
[[File:IP usage 6.png|800px]]&lt;br /&gt;
[[File:IP usage 7.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=893</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=893"/>
		<updated>2025-06-25T14:04:47Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
[[File:IP usage 1.png|thumb]]&lt;br /&gt;
[[File:IP usage 2.png|thumb]]&lt;br /&gt;
[[File:IP usage 3.png|thumb]]&lt;br /&gt;
[[File:IP usage 4.png|thumb]]&lt;br /&gt;
[[File:IP usage 5.png|thumb]]&lt;br /&gt;
[[File:IP usage 6.png|thumb]]&lt;br /&gt;
[[File:IP usage 7.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_7.png&amp;diff=892</id>
		<title>File:IP usage 7.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_7.png&amp;diff=892"/>
		<updated>2025-06-25T14:04:42Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_6.png&amp;diff=891</id>
		<title>File:IP usage 6.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_6.png&amp;diff=891"/>
		<updated>2025-06-25T14:04:19Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_4.png&amp;diff=890</id>
		<title>File:IP usage 4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_4.png&amp;diff=890"/>
		<updated>2025-06-25T14:03:55Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_5.png&amp;diff=889</id>
		<title>File:IP usage 5.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_5.png&amp;diff=889"/>
		<updated>2025-06-25T14:03:34Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_3.png&amp;diff=888</id>
		<title>File:IP usage 3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_3.png&amp;diff=888"/>
		<updated>2025-06-25T14:03:09Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_2.png&amp;diff=887</id>
		<title>File:IP usage 2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_2.png&amp;diff=887"/>
		<updated>2025-06-25T14:02:48Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_1.png&amp;diff=886</id>
		<title>File:IP usage 1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:IP_usage_1.png&amp;diff=886"/>
		<updated>2025-06-25T14:02:16Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=885</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=885"/>
		<updated>2025-06-24T13:13:03Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= Example chapter =&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
&lt;br /&gt;
In the&amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; page go to the &#039;&#039;&#039;Actions&#039;&#039;&#039; column on the top right and select &#039;&#039;&#039;Associate Floating IP&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu VM Creation Dashboard manual 04.png|600px]]&lt;br /&gt;
&lt;br /&gt;
A dialog box appears. Select an available IP address and click on &#039;&#039;&#039;Associate&#039;&#039;&#039; to assign a Floating IP to the VM&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu VM Creation Dashboard manual 05.png|600px]]&lt;br /&gt;
&lt;br /&gt;
If there are not available IP addresses, create a new one by clicking on the &#039;+&#039; sign and click on &#039;&#039;&#039;Allocate IP&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu VM Creation Dashboard manual 06.png|600px]]&lt;br /&gt;
&lt;br /&gt;
= Associate/Disassociate floating IP =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=884</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=884"/>
		<updated>2025-06-24T13:12:07Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
&lt;br /&gt;
= Associate floating IP =&lt;br /&gt;
&lt;br /&gt;
In the&amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; page go to the &#039;&#039;&#039;Actions&#039;&#039;&#039; column on the top right and select &#039;&#039;&#039;Associate Floating IP&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu VM Creation Dashboard manual 04.png|600px]]&lt;br /&gt;
&lt;br /&gt;
A dialog box appears. Select an available IP address and click on &#039;&#039;&#039;Associate&#039;&#039;&#039; to assign a Floating IP to the VM&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu VM Creation Dashboard manual 05.png|600px]]&lt;br /&gt;
&lt;br /&gt;
If there are not available IP addresses, create a new one by clicking on the &#039;+&#039; sign and click on &#039;&#039;&#039;Allocate IP&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ubuntu VM Creation Dashboard manual 06.png|600px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=883</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=883"/>
		<updated>2025-06-24T13:10:29Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the usage of IP&#039;s on VM&#039;s either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|IP usage CLI=&lt;br /&gt;
= OpenStack CLI Installation =&lt;br /&gt;
&lt;br /&gt;
|-|IP usage Dashboard=&lt;br /&gt;
&lt;br /&gt;
= Login via Dashboard =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=882</id>
		<title>IP usage</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=IP_usage&amp;diff=882"/>
		<updated>2025-06-24T13:09:30Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Created page with &amp;quot;= Overview = This page describes the process of creating a virtual machine (VM) either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).  The following manuals are laid out for Ubuntu.  &amp;lt;tabber&amp;gt; |-|VM creation CLI= = OpenStack CLI Installation =  |-|VM creation Dashboard=  = Login via Dashboard =  &amp;lt;/tabber&amp;gt; Category: CLI Category: Network&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the process of creating a virtual machine (VM) either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Ubuntu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|VM creation CLI=&lt;br /&gt;
= OpenStack CLI Installation =&lt;br /&gt;
&lt;br /&gt;
|-|VM creation Dashboard=&lt;br /&gt;
&lt;br /&gt;
= Login via Dashboard =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Network]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=Main_Page&amp;diff=881</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=Main_Page&amp;diff=881"/>
		<updated>2025-06-24T13:06:38Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;float:left; width:48%;&amp;quot;&amp;gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Welcome to the wiki of our [https://www.openstack.org/ OpenStack] based [https://www.stoney-cloud.com/ stoney cloud] infrastructure.&lt;br /&gt;
This collection serves as a comprehensive resource for all aspects of our cloud environment. Here, you will find guides for managing and utilizing our stoney cloud.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
[[Quickstart]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width:48%&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
[[:Category:Projects|Projects]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Instances|Instances]]&lt;br /&gt;
* [[VM creation (Linux)]]&lt;br /&gt;
* [[VM creation (Windows)]]&lt;br /&gt;
* [[VM resize (Linux)]]&lt;br /&gt;
* [[VM resize (Windows)]]&lt;br /&gt;
* [[Flavor explanation]]&lt;br /&gt;
[[:Category:Volumes|Volumes]]&lt;br /&gt;
* [[Quota]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Images|Images]]&lt;br /&gt;
* [[Image creation]]&lt;br /&gt;
[[:Category:Network|Network]]&lt;br /&gt;
* [[Security group rules]]&lt;br /&gt;
* [[IP usage]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Object store|Object store]]&lt;br /&gt;
* [[S3 buckets]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Kubernetes|Kubernetes]]&lt;br /&gt;
* [[Kubernetes management]]&lt;br /&gt;
* [[Kubernetes usage]]&lt;br /&gt;
&lt;br /&gt;
[[:Category:Troubleshooting|Troubleshooting]]&lt;br /&gt;
* [[PCI workaround]]&lt;br /&gt;
* [[Change user password]]&lt;br /&gt;
&lt;br /&gt;
== Quick links ==&lt;br /&gt;
* [https://www.stoney-cloud.com/ stoney cloud Website]&lt;br /&gt;
* [https://dashboard.stoney-cloud.com/ stoney cloud Dashboard]&lt;br /&gt;
* [https://docs.openstack.org/horizon/latest/user/index.html Official OpenStack Dashboard Documentation]&lt;br /&gt;
* [https://docs.openstack.org/python-openstackclient/latest/cli/index.html Official OpenStack CLI Documentation]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both; height:0px; line-height:0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=VM_creation_(Windows)&amp;diff=566</id>
		<title>VM creation (Windows)</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=VM_creation_(Windows)&amp;diff=566"/>
		<updated>2024-07-15T13:37:06Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the process of creating a virtual machine (VM) either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Windows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|VM creation CLI=&lt;br /&gt;
= OpenStack CLI Installation =&lt;br /&gt;
To use OpenStack CLI, you need to install the OpenStack CLI Client for your OS:&lt;br /&gt;
 &amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Fedora&lt;br /&gt;
dnf install python3-openstackclient&lt;br /&gt;
# Debian / Ubuntu&lt;br /&gt;
apt install python3-openstackclient&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
The official installaton guide can be found on [https://docs.openstack.org/mitaka/user-guide/common/cli_install_openstack_command_line_clients.html docs.openstack.org].&lt;br /&gt;
&lt;br /&gt;
= OpenStack client environment script (OpenRC file) =&lt;br /&gt;
To increase efficiency of client operations, OpenStack supports simple client environment scripts also known as OpenRC files. These scripts typically contain common options for all clients, but also support unique options.&lt;br /&gt;
&lt;br /&gt;
You may download such an OpenRC file from the [https://dashboard.stoney-cloud.com/ dashboard].&lt;br /&gt;
&lt;br /&gt;
After logging into the [https://dashboard.stoney-cloud.com/ dashboard], click on your user name in the upper right corner and choose the menu option «OpenStack RC File v3» and save it the desired location on your local machine. As you can have multiple OpenRC files, we recommend to use a sub directory. For example &amp;lt;code&amp;gt;openrc&amp;lt;/code&amp;gt; in your home directory.&lt;br /&gt;
&lt;br /&gt;
[[Image:OpenStack_RC_File_v3.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Source the OpenRC file specific to this project (use single quotation marks to avoid problems with spaces in the file name):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
source ${HOME}/openrc/&#039;Project Name-openrc.sh&#039;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After you sourced the file, you need to enter a password:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Please enter your OpenStack Password for project Project Name as user user: &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check if you have access to the OpenStack API by listing the API endpoints:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack catalog list&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Expected output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
+------------+-----------+--------------------------------------------------------------------------------------------------+&lt;br /&gt;
| Name       | Type      | Endpoints                                                                                        |&lt;br /&gt;
+------------+-----------+--------------------------------------------------------------------------------------------------+&lt;br /&gt;
| glance     | image     | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   internal: https://glance.ctrl-int.os.stoney-cloud.com:9292                                     |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   public: https://api.os.stoney-cloud.com:9292                                                   |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   admin: https://glance.ctrl-int.os.stoney-cloud.com:9292                                        |&lt;br /&gt;
[...]&lt;br /&gt;
| cinderv2   | volumev2  | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   internal: https://cinder.ctrl-int.os.stoney-cloud.com:8776/v2/616812eda14e44de89138f3377841187 |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   admin: https://cinder.ctrl-int.os.stoney-cloud.com:8776/v2/616812eda14e44de89138f3377841187    |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   public: https://api.os.stoney-cloud.com:8776/v2/616812eda14e44de89138f3377841187               |&lt;br /&gt;
|            |           |                                                                                                  |&lt;br /&gt;
+------------+-----------+--------------------------------------------------------------------------------------------------+&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= VM Creation - One-Disk Setup =&lt;br /&gt;
== VM Creation - One-Disk Setup - Variables ==&lt;br /&gt;
We define bash variables so that in every command the same value is being used.&lt;br /&gt;
&lt;br /&gt;
Another advantage of variables is, that the documentation is significantly easier, as another person could replicate the server if they know the variables that were set. &lt;br /&gt;
&lt;br /&gt;
Set the following variables that we will use in later commands:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# Host name of the server.                 Example: hostname=&amp;quot;sst-int-tmp-041&amp;quot;&lt;br /&gt;
hostname=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Display name of the server in OpenStack. Example: vmname=&amp;quot;sst-int-tmp-041: debian test cli&amp;quot;&lt;br /&gt;
vmname=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Domain name.                             Example: domain=&amp;quot;os.stoney-cloud.com&amp;quot;&lt;br /&gt;
domain=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We need to set the &amp;lt;code&amp;gt;project_id&amp;lt;/code&amp;gt; variable to the project our previously sourced openrc file belongs to: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List the projects of your OpenStack domain.&lt;br /&gt;
openstack project list&lt;br /&gt;
&lt;br /&gt;
# Project ID of the project in which the VM will be created.&lt;br /&gt;
#   Example (stepping stone AG - Internal Systems Temporary): project_id=&amp;quot;6fd0ccd8b5ae44d292c67f0d3e75ca20&amp;quot;&lt;br /&gt;
project_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A flavour defines the CPU and RAM resources of the VM. &lt;br /&gt;
&lt;br /&gt;
The flavour is in the following format: &amp;lt;code&amp;gt;cXXmYYYY&amp;lt;/code&amp;gt; where &amp;lt;code&amp;gt;XX&amp;lt;/code&amp;gt; is the amount of CPUs and &amp;lt;code&amp;gt;YYYY&amp;lt;/code&amp;gt; the about of RAM:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List all available flavors&lt;br /&gt;
openstack flavor list --column Name --column ID | tail -n+3 | head -n-1 | sort -k3 -t&#039;|&#039; | grep Windows&lt;br /&gt;
&lt;br /&gt;
# Set the flavor ID, default: Standard Düdingen c001m0004 (719c82d4-df94-47fc-a7df-f18d5c6d3727).  &lt;br /&gt;
#    Example: flavor_id=&amp;quot;719c82d4-df94-47fc-a7df-f18d5c6d3727&amp;quot; &lt;br /&gt;
flavor_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We will add our VM to the &amp;lt;code&amp;gt;internal&amp;lt;/code&amp;gt; network of our project. This is the default network:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List the networks of the current project&lt;br /&gt;
openstack network list --project ${project_id}&lt;br /&gt;
&lt;br /&gt;
# Network ID, usually the ID for the network &amp;quot;internal&amp;quot;.  &lt;br /&gt;
#    Example: network_id=&amp;quot;919c2dde-6996-494a-86de-fc3b08248418&amp;quot;&lt;br /&gt;
network_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For this example, we use the &amp;quot;SSH&amp;quot; and &amp;quot;default&amp;quot; security groups (firewall-rules), so that we can access our server via ssh:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List the security groups of the current project and search for ssh and default&lt;br /&gt;
openstack security group list --project ${project_id} | egrep -i &#039;(ssh|default)&#039;&lt;br /&gt;
&lt;br /&gt;
# We set the default security group ID &amp;quot;default&amp;quot; (&amp;quot;default&amp;quot; is required for outgoing traffic!):&lt;br /&gt;
#    Example: default_security_group_id=&amp;quot;3f576bd2-11fe-47f3-806e-aaa219cff589&amp;quot; # default&lt;br /&gt;
default_security_group_id=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# We set the &amp;quot;SSH World&amp;quot; security group ID: &lt;br /&gt;
#    Example: ssh_security_group_id=&amp;quot;8083a9f3-e6c0-4061-b4bb-eb0dd24a86ef&amp;quot;     # SSH World&lt;br /&gt;
ssh_security_group_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - Disk creation ==&lt;br /&gt;
In OpenStack every Image has an ID.&lt;br /&gt;
&lt;br /&gt;
To create a new VM, we need to create a disk first.&lt;br /&gt;
&lt;br /&gt;
We can list the available images using the openstack-cli - we search for Ubuntu:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack image list | grep &amp;quot;Windows&amp;quot; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Expected output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
| 053129aa-48b5-40d2-8784-7215fcc62d48 | Windows Server 2012R2 import                                                 | active |&lt;br /&gt;
| 1004d7c3-da11-404b-bfa7-9f7df18f1966 | Windows Server 2016 Standard                                                 | active |&lt;br /&gt;
| a68f3f5f-db1f-4610-9931-cb3adf887b8d | Windows Server 2016 Standard (deprecated)                                    | active |&lt;br /&gt;
| 9868a8b8-4953-4d16-a078-ba7238fa0a1d | Windows Server 2019 Standard                                                 | active |&lt;br /&gt;
| 4c56a79b-a2f5-47be-9de0-ce808f5b77cc | Windows Server 2019 Standard - Private                                       | active |&lt;br /&gt;
| 3f9bfb18-a263-4e2e-9555-dea8d12bb6ae | Windows Server 2022 Standard (20230928): Primary disk /dev/vda (C:\)         | active |&lt;br /&gt;
| 93a888a4-abb7-408b-8976-969718a7e5a7 | Windows Server 2022 Standard (deprecated)                                    | active |&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We set the ID of the image and the size of the disk as variables for later use.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# Set the Image ID used for the first volume (Windows Server 2022 Standard (20230928): Primary disk /dev/vda (C:\))&lt;br /&gt;
vda_image_id=&amp;quot;3f9bfb18-a263-4e2e-9555-dea8d12bb6ae&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Size for the first volume in GiB&lt;br /&gt;
volume_size_vda=&amp;quot;10&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we can create the volume using the variables we just set.&lt;br /&gt;
&lt;br /&gt;
We can set &amp;lt;code&amp;gt;volume_vda_id&amp;lt;/code&amp;gt; as the command returns the ID of the newly created disk:&lt;br /&gt;
{| style=&amp;quot;background-color:rgba(255,0,0,0);border-width:0px;&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
volume_vda_id=$(&lt;br /&gt;
    openstack volume create \&lt;br /&gt;
        --property os-vol-tenant-attr:tenant_id=${project_id} \&lt;br /&gt;
        --bootable \&lt;br /&gt;
        --size ${volume_size_vda} \&lt;br /&gt;
        --image ${vda_image_id} \&lt;br /&gt;
        --description &amp;quot;OS disk (/dev/vda) for ${hostname}.&amp;quot; \&lt;br /&gt;
        --column id \&lt;br /&gt;
        --format value \&lt;br /&gt;
        &amp;quot;${hostname}: OS&amp;quot;&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039; line=&#039;line&#039; &amp;gt;&lt;br /&gt;
Set the variable ${volume_vda_id}.&lt;br /&gt;
Creates a new disk.&lt;br /&gt;
The disk belongs to the current project.&lt;br /&gt;
The disk can be bootable.&lt;br /&gt;
The size of the disk is ${volume_size_vda}.&lt;br /&gt;
The image of the disk is ${vda_image_id.&lt;br /&gt;
We set the description of the disk.&lt;br /&gt;
The id column will be printed out as output.&lt;br /&gt;
Only the value will be printed out as output.&lt;br /&gt;
Name of the disk.&lt;br /&gt;
-&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We ask OpenStack for the status of the current disk.&lt;br /&gt;
&lt;br /&gt;
If the disk has been successfully created, we can move on and create the VM:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack volume show \&lt;br /&gt;
    &amp;quot;${volume_vda_id}&amp;quot; \&lt;br /&gt;
    --column status \&lt;br /&gt;
    --format value&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Expected output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
available&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - VM creation ==&lt;br /&gt;
We can create the server using the &amp;lt;code&amp;gt;openstack server create&amp;lt;/code&amp;gt; command:&lt;br /&gt;
{|&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
server_id=$(&lt;br /&gt;
    openstack server create \&lt;br /&gt;
        --property project_id=${project_id} \&lt;br /&gt;
        --flavor &amp;quot;${flavor_id}&amp;quot; \&lt;br /&gt;
        --nic &amp;quot;net-id=${network_id}&amp;quot; \&lt;br /&gt;
        --volume &amp;quot;${volume_vda_id}&amp;quot; \&lt;br /&gt;
        --security-group &amp;quot;${default_security_group_id}&amp;quot; \&lt;br /&gt;
        --security-group &amp;quot;${ssh_security_group_id}&amp;quot; \&lt;br /&gt;
        --column id \&lt;br /&gt;
        --format value \&lt;br /&gt;
        &amp;quot;${vmname}&amp;quot;&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
We set the server_id variable to the OpenStack id of the server.&lt;br /&gt;
We create a new VM.&lt;br /&gt;
We set the project to ${project_id}.&lt;br /&gt;
We set the flavor to ${flavor_id}.&lt;br /&gt;
We set the nic to ${network_id}.&lt;br /&gt;
We set the volume to ${volume_vda_id}.&lt;br /&gt;
Use the security-group (firwall rule) ${default_security_group_id}.&lt;br /&gt;
Use the security-group (firwall rule) ${ssh_security_group_id}.&lt;br /&gt;
We use our previously generated clopud init script as user-data.&lt;br /&gt;
The id column will be printed out as output.&lt;br /&gt;
Only the value will be printed out as output.&lt;br /&gt;
We set the name of the VM.&lt;br /&gt;
-&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Check the status of the newly created instance (should be ACTIVE)&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack server show ${server_id} --column status&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Expected Output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
+--------+--------+&lt;br /&gt;
| Field  | Value  |&lt;br /&gt;
+--------+--------+&lt;br /&gt;
| status | ACTIVE |&lt;br /&gt;
+--------+--------+&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - VM Login ==&lt;br /&gt;
&lt;br /&gt;
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us. &lt;br /&gt;
&lt;br /&gt;
[[File:Debian VM Creation Dashboard manual 01.png|600px]]&lt;br /&gt;
&lt;br /&gt;
1. Select the appropriate project from the drop down menu at the top left.&lt;br /&gt;
&lt;br /&gt;
2. On the &amp;lt;code&amp;gt;Project&amp;lt;/code&amp;gt; tab, open the &amp;lt;code&amp;gt;Compute tab&amp;lt;/code&amp;gt; and click &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; category.&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_02.png|600px]]&lt;br /&gt;
&lt;br /&gt;
3. Click on the instance name of your VM&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_03.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Enter the &amp;lt;code&amp;gt;console&amp;lt;/code&amp;gt; tab and set a new administrator password.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finally, you can connect to your newly created VM by using xfreerdp:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
 password=&#039;&#039;&lt;br /&gt;
xfreerdp --ignore-certificate --plugin cliprdr -g 1440x900 -u Administrator@PROD-RMA -p $password 127.0.0.1&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - Checks ==&lt;br /&gt;
To verify that the VM got set up correctly start PowerShell as Administrator and run these commands:&lt;br /&gt;
&lt;br /&gt;
Check if the correct image was selected: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
systeminfo | findstr /B /C:&amp;quot;OS Name&amp;quot; /C:&amp;quot;OS Version&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
OS Name:                   Microsoft Windows Server 2022 Standard                                                       &lt;br /&gt;
OS Version:                10.0.20348 N/A Build 20348 &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check if the disks are mounted correctly: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
Get-Disk&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
Number Friendly Name Serial Number                    HealthStatus         OperationalStatus      Total Size Partition Style                                                                                                                    ------ ------------- -------------                    ------------         -----------------      ---------- ---------- 0      &lt;br /&gt;
Red Hat Vi... 1f4afc6e-be44-4c29-b                    Healthy              Online                 20 GB      MBR      &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check if you selected the correct flavour: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
(Get-CimInstance Win32_PhysicalMemory | Measure-Object -Property capacity -Sum).sum /1gb&lt;br /&gt;
(Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
4                                                                                                                      &lt;br /&gt;
1&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-|VM creation Dashboard=&lt;br /&gt;
&lt;br /&gt;
= Login via Dashboard =&lt;br /&gt;
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us. &lt;br /&gt;
&lt;br /&gt;
[[File:Debian VM Creation Dashboard manual 01.png|600px]]&lt;br /&gt;
&lt;br /&gt;
= Launch Instance - Preperations =&lt;br /&gt;
1. Select the appropriate project from the drop down menu at the top left.&lt;br /&gt;
&lt;br /&gt;
3. On the &amp;lt;code&amp;gt;Project&amp;lt;/code&amp;gt; tab, open the &amp;lt;code&amp;gt;Compute tab&amp;lt;/code&amp;gt; and click &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; category.&lt;br /&gt;
&lt;br /&gt;
4. Click &amp;lt;code&amp;gt;Launch Instance&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:Windows VM Creation Dashboard manual 02.png|600px]]&lt;br /&gt;
&lt;br /&gt;
5. A dialog box opens. Specify the values as follows:&lt;br /&gt;
* &#039;&#039;&#039;Instance Name&#039;&#039;&#039;: Assign a name to the virtual machine.&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Source&amp;lt;/code&amp;gt; tab and chose &#039;&#039;&#039;Image&#039;&#039;&#039; in &#039;&#039;&#039;Select Boot Source&#039;&#039;&#039;.&lt;br /&gt;
* Type &#039;&#039;&#039;Windows&#039;&#039;&#039; in the search bar below and allocate the image &#039;Windows Server 2019 Standard&#039; from the image list by clicking the arrow pointing up.&lt;br /&gt;
[[File:Windows Creation Dashboard manual 03.png|600px]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Flavour&amp;lt;/code&amp;gt; tab and allocate the desired Flavour (For example: Standard Düdingen c001m0002) from the list below by clicking the arrow pointing up. &lt;br /&gt;
[[File:Windows Creation Dashboard manual 04.png|600px]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Networks&amp;lt;/code&amp;gt; and allocate the network &#039;&#039;&#039;internal&#039;&#039;&#039; from the list below by clicking the arrow pointing up. &lt;br /&gt;
[[File:Windows Creation Dashboard manual 05.png|600px]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Security Groups&amp;lt;/code&amp;gt; and allocate the security group &#039;&#039;&#039;RDP World&#039;&#039;&#039; from the list below by clicking the arrow pointing up. &lt;br /&gt;
[[File:Windows Creation Dashboard manual 06.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Click&amp;lt;code&amp;gt;Launch Instance&amp;lt;/code&amp;gt; to create the VM. After no more than a minute the VM is created and listed in the &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; page.&lt;br /&gt;
&#039;&#039;&#039;Bild einfügen&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= VM Login =&lt;br /&gt;
&lt;br /&gt;
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us. &lt;br /&gt;
&lt;br /&gt;
[[File:Debian VM Creation Dashboard manual 01.png|600px]]&lt;br /&gt;
&lt;br /&gt;
1. Select the appropriate project from the drop down menu at the top left.&lt;br /&gt;
&lt;br /&gt;
2. On the &amp;lt;code&amp;gt;Project&amp;lt;/code&amp;gt; tab, open the &amp;lt;code&amp;gt;Compute tab&amp;lt;/code&amp;gt; and click &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; category.&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_02.png|600px]]&lt;br /&gt;
&lt;br /&gt;
3. Click on the instance name of your VM&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_03.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Enter the &amp;lt;code&amp;gt;console&amp;lt;/code&amp;gt; tab and set a new administrator password.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finally, you can connect to your newly created VM by using xfreerdp:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
 password=&#039;&#039;&lt;br /&gt;
xfreerdp --ignore-certificate --plugin cliprdr -g 1440x900 -u Administrator@PROD-RMA -p $password 127.0.0.1&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Dashboard]]&lt;br /&gt;
[[Category: Instances]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=VM_creation_(Windows)&amp;diff=565</id>
		<title>VM creation (Windows)</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=VM_creation_(Windows)&amp;diff=565"/>
		<updated>2024-07-15T13:36:33Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
This page describes the process of creating a virtual machine (VM) either via [https://dashboard.stoney-cloud.com dashboard] or command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
The following manuals are laid out for Windows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tabber&amp;gt;&lt;br /&gt;
|-|VM creation CLI=&lt;br /&gt;
= OpenStack CLI Installation =&lt;br /&gt;
To use OpenStack CLI, you need to install the OpenStack CLI Client for your OS:&lt;br /&gt;
 &amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Fedora&lt;br /&gt;
dnf install python3-openstackclient&lt;br /&gt;
# Debian / Ubuntu&lt;br /&gt;
apt install python3-openstackclient&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
The official installaton guide can be found on [https://docs.openstack.org/mitaka/user-guide/common/cli_install_openstack_command_line_clients.html docs.openstack.org].&lt;br /&gt;
&lt;br /&gt;
= OpenStack client environment script (OpenRC file) =&lt;br /&gt;
To increase efficiency of client operations, OpenStack supports simple client environment scripts also known as OpenRC files. These scripts typically contain common options for all clients, but also support unique options.&lt;br /&gt;
&lt;br /&gt;
You may download such an OpenRC file from the [https://dashboard.stoney-cloud.com/ dashboard].&lt;br /&gt;
&lt;br /&gt;
After logging into the [https://dashboard.stoney-cloud.com/ dashboard], click on your user name in the upper right corner and choose the menu option «OpenStack RC File v3» and save it the desired location on your local machine. As you can have multiple OpenRC files, we recommend to use a sub directory. For example &amp;lt;code&amp;gt;openrc&amp;lt;/code&amp;gt; in your home directory.&lt;br /&gt;
&lt;br /&gt;
[[Image:OpenStack_RC_File_v3.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Source the OpenRC file specific to this project (use single quotation marks to avoid problems with spaces in the file name):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
source ${HOME}/openrc/&#039;Project Name-openrc.sh&#039;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After you sourced the file, you need to enter a password:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Please enter your OpenStack Password for project Project Name as user user: &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check if you have access to the OpenStack API by listing the API endpoints:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack catalog list&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Expected output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
+------------+-----------+--------------------------------------------------------------------------------------------------+&lt;br /&gt;
| Name       | Type      | Endpoints                                                                                        |&lt;br /&gt;
+------------+-----------+--------------------------------------------------------------------------------------------------+&lt;br /&gt;
| glance     | image     | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   internal: https://glance.ctrl-int.os.stoney-cloud.com:9292                                     |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   public: https://api.os.stoney-cloud.com:9292                                                   |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   admin: https://glance.ctrl-int.os.stoney-cloud.com:9292                                        |&lt;br /&gt;
[...]&lt;br /&gt;
| cinderv2   | volumev2  | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   internal: https://cinder.ctrl-int.os.stoney-cloud.com:8776/v2/616812eda14e44de89138f3377841187 |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   admin: https://cinder.ctrl-int.os.stoney-cloud.com:8776/v2/616812eda14e44de89138f3377841187    |&lt;br /&gt;
|            |           | duedingen-production                                                                             |&lt;br /&gt;
|            |           |   public: https://api.os.stoney-cloud.com:8776/v2/616812eda14e44de89138f3377841187               |&lt;br /&gt;
|            |           |                                                                                                  |&lt;br /&gt;
+------------+-----------+--------------------------------------------------------------------------------------------------+&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= VM Creation - One-Disk Setup =&lt;br /&gt;
== VM Creation - One-Disk Setup - Variables ==&lt;br /&gt;
We define bash variables so that in every command the same value is being used.&lt;br /&gt;
&lt;br /&gt;
Another advantage of variables is, that the documentation is significantly easier, as another person could replicate the server if they know the variables that were set. &lt;br /&gt;
&lt;br /&gt;
Set the following variables that we will use in later commands:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# Host name of the server.                 Example: hostname=&amp;quot;sst-int-tmp-041&amp;quot;&lt;br /&gt;
hostname=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Display name of the server in OpenStack. Example: vmname=&amp;quot;sst-int-tmp-041: debian test cli&amp;quot;&lt;br /&gt;
vmname=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Domain name.                             Example: domain=&amp;quot;os.stoney-cloud.com&amp;quot;&lt;br /&gt;
domain=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We need to set the &amp;lt;code&amp;gt;project_id&amp;lt;/code&amp;gt; variable to the project our previously sourced openrc file belongs to: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List the projects of your OpenStack domain.&lt;br /&gt;
openstack project list&lt;br /&gt;
&lt;br /&gt;
# Project ID of the project in which the VM will be created.&lt;br /&gt;
#   Example (stepping stone AG - Internal Systems Temporary): project_id=&amp;quot;6fd0ccd8b5ae44d292c67f0d3e75ca20&amp;quot;&lt;br /&gt;
project_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A flavour defines the CPU and RAM resources of the VM. &lt;br /&gt;
&lt;br /&gt;
The flavour is in the following format: &amp;lt;code&amp;gt;cXXmYYYY&amp;lt;/code&amp;gt; where &amp;lt;code&amp;gt;XX&amp;lt;/code&amp;gt; is the amount of CPUs and &amp;lt;code&amp;gt;YYYY&amp;lt;/code&amp;gt; the about of RAM:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List all available flavors&lt;br /&gt;
openstack flavor list --column Name --column ID | tail -n+3 | head -n-1 | sort -k3 -t&#039;|&#039; | grep Windows&lt;br /&gt;
&lt;br /&gt;
# Set the flavor ID, default: Standard Düdingen c001m0004 (719c82d4-df94-47fc-a7df-f18d5c6d3727).  &lt;br /&gt;
#    Example: flavor_id=&amp;quot;719c82d4-df94-47fc-a7df-f18d5c6d3727&amp;quot; &lt;br /&gt;
flavor_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We will add our VM to the &amp;lt;code&amp;gt;internal&amp;lt;/code&amp;gt; network of our project. This is the default network:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List the networks of the current project&lt;br /&gt;
openstack network list --project ${project_id}&lt;br /&gt;
&lt;br /&gt;
# Network ID, usually the ID for the network &amp;quot;internal&amp;quot;.  &lt;br /&gt;
#    Example: network_id=&amp;quot;919c2dde-6996-494a-86de-fc3b08248418&amp;quot;&lt;br /&gt;
network_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For this example, we use the &amp;quot;SSH&amp;quot; and &amp;quot;default&amp;quot; security groups (firewall-rules), so that we can access our server via ssh:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# List the security groups of the current project and search for ssh and default&lt;br /&gt;
openstack security group list --project ${project_id} | egrep -i &#039;(ssh|default)&#039;&lt;br /&gt;
&lt;br /&gt;
# We set the default security group ID &amp;quot;default&amp;quot; (&amp;quot;default&amp;quot; is required for outgoing traffic!):&lt;br /&gt;
#    Example: default_security_group_id=&amp;quot;3f576bd2-11fe-47f3-806e-aaa219cff589&amp;quot; # default&lt;br /&gt;
default_security_group_id=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# We set the &amp;quot;SSH World&amp;quot; security group ID: &lt;br /&gt;
#    Example: ssh_security_group_id=&amp;quot;8083a9f3-e6c0-4061-b4bb-eb0dd24a86ef&amp;quot;     # SSH World&lt;br /&gt;
ssh_security_group_id=&amp;quot;&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - Disk creation ==&lt;br /&gt;
In OpenStack every Image has an ID.&lt;br /&gt;
&lt;br /&gt;
To create a new VM, we need to create a disk first.&lt;br /&gt;
&lt;br /&gt;
We can list the available images using the openstack-cli - we search for Ubuntu:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack image list | grep &amp;quot;Windows&amp;quot; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Expected output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
| 053129aa-48b5-40d2-8784-7215fcc62d48 | Windows Server 2012R2 import                                                 | active |&lt;br /&gt;
| 1004d7c3-da11-404b-bfa7-9f7df18f1966 | Windows Server 2016 Standard                                                 | active |&lt;br /&gt;
| a68f3f5f-db1f-4610-9931-cb3adf887b8d | Windows Server 2016 Standard (deprecated)                                    | active |&lt;br /&gt;
| 9868a8b8-4953-4d16-a078-ba7238fa0a1d | Windows Server 2019 Standard                                                 | active |&lt;br /&gt;
| 4c56a79b-a2f5-47be-9de0-ce808f5b77cc | Windows Server 2019 Standard - Private                                       | active |&lt;br /&gt;
| 3f9bfb18-a263-4e2e-9555-dea8d12bb6ae | Windows Server 2022 Standard (20230928): Primary disk /dev/vda (C:\)         | active |&lt;br /&gt;
| 93a888a4-abb7-408b-8976-969718a7e5a7 | Windows Server 2022 Standard (deprecated)                                    | active |&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We set the ID of the image and the size of the disk as variables for later use.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
# Set the Image ID used for the first volume (Windows Server 2022 Standard (20230928): Primary disk /dev/vda (C:\))&lt;br /&gt;
vda_image_id=&amp;quot;3f9bfb18-a263-4e2e-9555-dea8d12bb6ae&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Size for the first volume in GiB&lt;br /&gt;
volume_size_vda=&amp;quot;10&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we can create the volume using the variables we just set.&lt;br /&gt;
&lt;br /&gt;
We can set &amp;lt;code&amp;gt;volume_vda_id&amp;lt;/code&amp;gt; as the command returns the ID of the newly created disk:&lt;br /&gt;
{| style=&amp;quot;background-color:rgba(255,0,0,0);border-width:0px;&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
volume_vda_id=$(&lt;br /&gt;
    openstack volume create \&lt;br /&gt;
        --property os-vol-tenant-attr:tenant_id=${project_id} \&lt;br /&gt;
        --bootable \&lt;br /&gt;
        --size ${volume_size_vda} \&lt;br /&gt;
        --image ${vda_image_id} \&lt;br /&gt;
        --description &amp;quot;OS disk (/dev/vda) for ${hostname}.&amp;quot; \&lt;br /&gt;
        --column id \&lt;br /&gt;
        --format value \&lt;br /&gt;
        &amp;quot;${hostname}: OS&amp;quot;&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039; line=&#039;line&#039; &amp;gt;&lt;br /&gt;
Set the variable ${volume_vda_id}.&lt;br /&gt;
Creates a new disk.&lt;br /&gt;
The disk belongs to the current project.&lt;br /&gt;
The disk can be bootable.&lt;br /&gt;
The size of the disk is ${volume_size_vda}.&lt;br /&gt;
The image of the disk is ${vda_image_id.&lt;br /&gt;
We set the description of the disk.&lt;br /&gt;
The id column will be printed out as output.&lt;br /&gt;
Only the value will be printed out as output.&lt;br /&gt;
Name of the disk.&lt;br /&gt;
-&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We ask OpenStack for the status of the current disk.&lt;br /&gt;
&lt;br /&gt;
If the disk has been successfully created, we can move on and create the VM:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack volume show \&lt;br /&gt;
    &amp;quot;${volume_vda_id}&amp;quot; \&lt;br /&gt;
    --column status \&lt;br /&gt;
    --format value&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Expected output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
available&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - VM creation ==&lt;br /&gt;
We can create the server using the &amp;lt;code&amp;gt;openstack server create&amp;lt;/code&amp;gt; command:&lt;br /&gt;
{|&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
server_id=$(&lt;br /&gt;
    openstack server create \&lt;br /&gt;
        --property project_id=${project_id} \&lt;br /&gt;
        --flavor &amp;quot;${flavor_id}&amp;quot; \&lt;br /&gt;
        --nic &amp;quot;net-id=${network_id}&amp;quot; \&lt;br /&gt;
        --volume &amp;quot;${volume_vda_id}&amp;quot; \&lt;br /&gt;
        --security-group &amp;quot;${default_security_group_id}&amp;quot; \&lt;br /&gt;
        --security-group &amp;quot;${ssh_security_group_id}&amp;quot; \&lt;br /&gt;
        --column id \&lt;br /&gt;
        --format value \&lt;br /&gt;
        &amp;quot;${vmname}&amp;quot;&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
We set the server_id variable to the OpenStack id of the server.&lt;br /&gt;
We create a new VM.&lt;br /&gt;
We set the project to ${project_id}.&lt;br /&gt;
We set the flavor to ${flavor_id}.&lt;br /&gt;
We set the nic to ${network_id}.&lt;br /&gt;
We set the volume to ${volume_vda_id}.&lt;br /&gt;
Use the security-group (firwall rule) ${default_security_group_id}.&lt;br /&gt;
Use the security-group (firwall rule) ${ssh_security_group_id}.&lt;br /&gt;
We use our previously generated clopud init script as user-data.&lt;br /&gt;
The id column will be printed out as output.&lt;br /&gt;
Only the value will be printed out as output.&lt;br /&gt;
We set the name of the VM.&lt;br /&gt;
-&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Check the status of the newly created instance (should be ACTIVE)&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
openstack server show ${server_id} --column status&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Expected Output:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;text&#039;&amp;gt;&lt;br /&gt;
+--------+--------+&lt;br /&gt;
| Field  | Value  |&lt;br /&gt;
+--------+--------+&lt;br /&gt;
| status | ACTIVE |&lt;br /&gt;
+--------+--------+&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - VM Login ==&lt;br /&gt;
&lt;br /&gt;
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us. &lt;br /&gt;
&lt;br /&gt;
[[File:Debian VM Creation Dashboard manual 01.png|600px]]&lt;br /&gt;
&lt;br /&gt;
1. Select the appropriate project from the drop down menu at the top left.&lt;br /&gt;
&lt;br /&gt;
2. On the &amp;lt;code&amp;gt;Project&amp;lt;/code&amp;gt; tab, open the &amp;lt;code&amp;gt;Compute tab&amp;lt;/code&amp;gt; and click &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; category.&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_02.png|600px]]&lt;br /&gt;
&lt;br /&gt;
3. Click on the instance name of your VM&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_03.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Enter the &amp;lt;code&amp;gt;console&amp;lt;/code&amp;gt; tab and set a new administrator password.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finally, you can connect to your newly created VM by using xfreerdp:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
 password=&#039;&#039;&lt;br /&gt;
xfreerdp --ignore-certificate --plugin cliprdr -g 1440x900 -u Administrator@PROD-RMA -p $password 127.0.0.1&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== VM Creation - One-Disk Setup - Checks ==&lt;br /&gt;
To verify that the VM got set up correctly start PowerShell as Administrator and run these commands:&lt;br /&gt;
&lt;br /&gt;
Check if the correct image was selected: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
systeminfo | findstr /B /C:&amp;quot;OS Name&amp;quot; /C:&amp;quot;OS Version&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
OS Name:                   Microsoft Windows Server 2022 Standard                                                       &lt;br /&gt;
OS Version:                10.0.20348 N/A Build 20348 &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check if the disks are mounted correctly: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
Get-Disk&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
Number Friendly Name Serial Number                    HealthStatus         OperationalStatus      Total Size Partition Style                                                                                                                    ------ ------------- -------------                    ------------         -----------------      ---------- ---------- 0      &lt;br /&gt;
Red Hat Vi... 1f4afc6e-be44-4c29-b                    Healthy              Online                 20 GB      MBR      &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check if you selected the correct flavour: &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
(Get-CimInstance Win32_PhysicalMemory | Measure-Object -Property capacity -Sum).sum /1gb&lt;br /&gt;
(Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;powershell&amp;quot;&amp;gt;&lt;br /&gt;
4                                                                                                                      &lt;br /&gt;
1&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-|VM creation Dashboard=&lt;br /&gt;
&lt;br /&gt;
= Login via Dashboard =&lt;br /&gt;
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us. &lt;br /&gt;
&lt;br /&gt;
[[File:Debian VM Creation Dashboard manual 01.png|600px]]&lt;br /&gt;
&lt;br /&gt;
= Launch Instance - Preperations =&lt;br /&gt;
1. Select the appropriate project from the drop down menu at the top left.&lt;br /&gt;
&lt;br /&gt;
3. On the &amp;lt;code&amp;gt;Project&amp;lt;/code&amp;gt; tab, open the &amp;lt;code&amp;gt;Compute tab&amp;lt;/code&amp;gt; and click &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; category.&lt;br /&gt;
&lt;br /&gt;
4. Click &amp;lt;code&amp;gt;Launch Instance&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:Windows VM Creation Dashboard manual 02.png|600px]]&lt;br /&gt;
&lt;br /&gt;
5. A dialog box opens. Specify the values as follows:&lt;br /&gt;
* &#039;&#039;&#039;Instance Name&#039;&#039;&#039;: Assign a name to the virtual machine.&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Source&amp;lt;/code&amp;gt; tab and chose &#039;&#039;&#039;Image&#039;&#039;&#039; in &#039;&#039;&#039;Select Boot Source&#039;&#039;&#039;.&lt;br /&gt;
* Type &#039;&#039;&#039;Windows&#039;&#039;&#039; in the search bar below and allocate the image &#039;Windows Server 2019 Standard&#039; from the image list by clicking the arrow pointing up.&lt;br /&gt;
[[File:Windows Creation Dashboard manual 03.png|600px]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Flavour&amp;lt;/code&amp;gt; tab and allocate the desired Flavour (For example: Standard Düdingen c001m0002) from the list below by clicking the arrow pointing up. &lt;br /&gt;
[[File:Windows Creation Dashboard manual 04.png|600px]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Networks&amp;lt;/code&amp;gt; and allocate the network &#039;&#039;&#039;internal&#039;&#039;&#039; from the list below by clicking the arrow pointing up. &lt;br /&gt;
[[File:Windows Creation Dashboard manual 05.png|600px]]&lt;br /&gt;
&lt;br /&gt;
* Click &amp;lt;code&amp;gt;Security Groups&amp;lt;/code&amp;gt; and allocate the security group &#039;&#039;&#039;RDP World&#039;&#039;&#039; from the list below by clicking the arrow pointing up. &lt;br /&gt;
[[File:Windows Creation Dashboard manual 06.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Click&amp;lt;code&amp;gt;Launch Instance&amp;lt;/code&amp;gt; to create the VM. After no more than a minute the VM is created and listed in the &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; page.&lt;br /&gt;
&#039;&#039;&#039;Bild einfügen&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
= VM Login =&lt;br /&gt;
&lt;br /&gt;
Log in to the stoney cloud [https://dashboard.stoney-cloud.com/dashboard dashboard] with the credentials you have received from us. &lt;br /&gt;
&lt;br /&gt;
[[File:Debian VM Creation Dashboard manual 01.png|600px]]&lt;br /&gt;
&lt;br /&gt;
1. Select the appropriate project from the drop down menu at the top left.&lt;br /&gt;
&lt;br /&gt;
2. On the &amp;lt;code&amp;gt;Project&amp;lt;/code&amp;gt; tab, open the &amp;lt;code&amp;gt;Compute tab&amp;lt;/code&amp;gt; and click &amp;lt;code&amp;gt;Instances&amp;lt;/code&amp;gt; category.&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_02.png|600px]]&lt;br /&gt;
&lt;br /&gt;
3. Click on the instance name of your VM&lt;br /&gt;
&lt;br /&gt;
[[File:Introduction_to_the_Dashboard_03.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Enter the &amp;lt;code&amp;gt;console&amp;lt;/code&amp;gt; tab and set a new administrator password.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finally, you can connect to your newly created VM by using xfreerdp:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
 password=&#039;&#039;&lt;br /&gt;
xfreerdp --ignore-certificate --plugin cliprdr -g 1440x900 -u Administrator@PROD-RMA -p $password 127.0.0.1&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
*via RDP (not yet documented)&lt;br /&gt;
&amp;lt;/tabber&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: CLI]]&lt;br /&gt;
[[Category: Dashboard]]&lt;br /&gt;
[[Category: Instances]]&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Windows_VM_Creation_Dashboard_manual_02.png&amp;diff=564</id>
		<title>File:Windows VM Creation Dashboard manual 02.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Windows_VM_Creation_Dashboard_manual_02.png&amp;diff=564"/>
		<updated>2024-07-15T12:55:10Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Windows VM Creation Dashboard manual 02.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Introduction_to_the_Dashboard_02.png&amp;diff=563</id>
		<title>File:Introduction to the Dashboard 02.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Introduction_to_the_Dashboard_02.png&amp;diff=563"/>
		<updated>2024-07-15T12:53:51Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Introduction to the Dashboard 02.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Ubuntu_VM_Creation_Dashboard_manual_02.png&amp;diff=562</id>
		<title>File:Ubuntu VM Creation Dashboard manual 02.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Ubuntu_VM_Creation_Dashboard_manual_02.png&amp;diff=562"/>
		<updated>2024-07-15T12:51:20Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Ubuntu VM Creation Dashboard manual 02.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu_VM_Creation_Dashboard_manual_02.png&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Ubuntu_VM_Creation_Dashboard_manual_02.png&amp;diff=561</id>
		<title>File:Ubuntu VM Creation Dashboard manual 02.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Ubuntu_VM_Creation_Dashboard_manual_02.png&amp;diff=561"/>
		<updated>2024-07-15T12:50:33Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Ubuntu VM Creation Dashboard manual 02.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu_VM_Creation_Dashboard_manual_02.png&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Ubuntu_VM_Creation_Dashboard_manual_01.png&amp;diff=560</id>
		<title>File:Ubuntu VM Creation Dashboard manual 01.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Ubuntu_VM_Creation_Dashboard_manual_01.png&amp;diff=560"/>
		<updated>2024-07-15T12:48:36Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Ubuntu VM Creation Dashboard manual 01.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu_VM_Creation_Dashboard_manual_01.png&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Debian_VM_Creation_Dashboard_manual_02.png&amp;diff=559</id>
		<title>File:Debian VM Creation Dashboard manual 02.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Debian_VM_Creation_Dashboard_manual_02.png&amp;diff=559"/>
		<updated>2024-07-15T12:47:41Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Debian VM Creation Dashboard manual 02.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Debian VM Creation Dashboard manual 02.png&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:OpenStack_RC_File_v3.png&amp;diff=558</id>
		<title>File:OpenStack RC File v3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:OpenStack_RC_File_v3.png&amp;diff=558"/>
		<updated>2024-07-15T12:45:47Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:OpenStack RC File v3.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_1.png&amp;diff=557</id>
		<title>File:Password Change 1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_1.png&amp;diff=557"/>
		<updated>2024-07-15T12:44:36Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Password Change 1.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_1.png&amp;diff=556</id>
		<title>File:Password Change 1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_1.png&amp;diff=556"/>
		<updated>2024-07-15T12:35:37Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_2.png&amp;diff=555</id>
		<title>File:Password Change 2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_2.png&amp;diff=555"/>
		<updated>2024-07-15T12:34:36Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: Sst-ska uploaded a new version of File:Password Change 2.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_3.png&amp;diff=551</id>
		<title>File:Password Change 3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_3.png&amp;diff=551"/>
		<updated>2024-07-15T12:29:22Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_2.png&amp;diff=550</id>
		<title>File:Password Change 2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=File:Password_Change_2.png&amp;diff=550"/>
		<updated>2024-07-15T12:29:14Z</updated>

		<summary type="html">&lt;p&gt;Sst-ska: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sst-ska</name></author>
	</entry>
</feed>