Skip to content
Snippets Groups Projects

Fix based on Ondrej Jakl comments

Merged Josef Němec requested to merge fix/ondrej-jakl-comments into master
All threads resolved!
1 file
+ 17
16
Compare changes
  • Side-by-side
  • Inline
@@ -63,13 +63,13 @@ an instance remotely is SSH. Using SSH requires a pair of keys - a public key an
@@ -63,13 +63,13 @@ an instance remotely is SSH. Using SSH requires a pair of keys - a public key an
![](/compute/openstack/images/instance/keypair1.png)
![](/compute/openstack/images/instance/keypair1.png)
__2.__ In the **Create key Pair** insert the **Key Pair Name**. Avoid using special characters, if possible. Next select SSH key for **Key Type** and finally confirm with **Done**.
__2.__ In the **Create Key Pair** insert the **Key Pair Name**. Avoid using special characters, if possible. Next select SSH key for **Key Type** and finally confirm with **Create Key Pair**.
!!! example
!!! example
![](/compute/openstack/images/instance/keypair2.png)
![](/compute/openstack/images/instance/keypair2.png)
__3.__ Download the private key to your local computer and move it to the `~/.ssh/` folder. If you are using windows, refer to [accessing from windows](../technical-reference/remote-access.md#accessing-from-windows).
__3.__ Download the private key to your local computer and move it to the `~/.ssh/` folder. If you are using Windows, refer to [Accessing From Windows](../technical-reference/remote-access.md#accessing-from-windows).
__4.__ Set access privileges on `~/.ssh/` folder:
__4.__ Set access privileges on `~/.ssh/` folder:
@@ -144,7 +144,7 @@ your virtual machine via SSH from your local terminal.
@@ -144,7 +144,7 @@ your virtual machine via SSH from your local terminal.
openstack security group show default
openstack security group show default
```
```
## Create Virtual Machine Instance
## Create a Virtual Machine Instance
=== "GUI"
=== "GUI"
@@ -155,7 +155,7 @@ your virtual machine via SSH from your local terminal.
@@ -155,7 +155,7 @@ your virtual machine via SSH from your local terminal.
![](/compute/openstack/images/instance/instance1.png)
![](/compute/openstack/images/instance/instance1.png)
__2.__ Choose **Instance Name**, Description, and number of instances.
__2.__ Choose **Instance Name**, Description, and number of instances.
If you are creating more instances, `-%i` will be automatically appended to the name of each instance. Continue via **Next**
If you are creating more instances, `-%i` will be automatically appended to the name of each instance. Continue via **Next**.
!!! example
!!! example
@@ -173,11 +173,11 @@ your virtual machine via SSH from your local terminal.
@@ -173,11 +173,11 @@ your virtual machine via SSH from your local terminal.
![](/compute/openstack/images/instance/instance4.png)
![](/compute/openstack/images/instance/instance4.png)
__5.__ Select appropriate network based on your project type. and continue to **Key Pair** in the left menu.
__5.__ Select appropriate network based on your project type and continue to **Key Pair** in the left menu.
=== "Personal project"
=== "Personal project"
For personal project select personal-project-network-subnet from network `147-251-115-pers-proj-net`
For personal project select personal-project-network-subnet from network `147-251-115-pers-proj-net`.
!!! example
!!! example
@@ -185,7 +185,7 @@ your virtual machine via SSH from your local terminal.
@@ -185,7 +185,7 @@ your virtual machine via SSH from your local terminal.
=== "Group project"
=== "Group project"
For group project select group-project-network-subnet from network group-project-network (check if [Router gateway](../how-to-guides/create-networking.md#router-creation) is set)
For group project select group-project-network-subnet from network `group-project-network` (check if [Router gateway](../how-to-guides/create-router.md#router-creation) is set).
!!! example
!!! example
@@ -228,21 +228,22 @@ your virtual machine via SSH from your local terminal.
@@ -228,21 +228,22 @@ your virtual machine via SSH from your local terminal.
## Associate Floating IP
## Associate Floating IP
Wait until instance initialization finishes and
Floating IP is the OpenStack name for a public IP. It makes the instance accessible from an external network (e.g., the Internet).
[Associate Floating IP](../how-to-guides/managing-floating-ips.md).
For group project always select the same network as used in
[Router gateway](../how-to-guides/create-networking.md#router-creation).
!!! example
At this point, you want to [Allocate IP Address](../how-to-guides/managing-floating-ips.md#allocating-ip-address)
and [Assign IP Address](../how-to-guides/managing-floating-ips.md#assigning-ip-address).
![](/compute/openstack/images/tutorial/instance_associate_ip.png)
You don't have to care about the other sections unless you need them.
 
For group projects, always select the same network as used in
 
[Router gateway](../how-to-guides/create-router.md#router-creation).
## Login
## Login
Login using your SSH key as selected in Key pair above
Login using your SSH key as selected in Key pair above.
 
 
Connect to the instance using **ssh system@floating-ip**, where `system` refers to the image OS (ubuntu, debian, centos) and `floating-ip` is the one associated.
Connect to the instance using **ssh system@floating-ip**, as described on page [Accessing instances](../how-to-guides/accessing-instances.md).
More information about login options is described on the [Accessing Instances](../how-to-guides/accessing-instances.md) page.
!!! info
!!! info
Loading