Skip to content

Commit

Permalink
Update How to Launch an Instance.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jontyms authored Sep 5, 2024
1 parent 515ec0b commit 9980dad
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/guides/How to Launch an Instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,23 @@ Launching an instance in OpenStack GUI is a straightforward process that allows
- Once the instance is in the "Active" state, click on its name to access its details.
- From the instance details page, click on the **Console** tab to open a console and access your instance remotely.

# Using SSH
Get the ip address of your instance from horizon.
Open up a terminal. For windows I recommend the [new windows terminal](https://aka.ms/terminal). Type ssh then the username for your distro. For example ubuntu is ``ubuntu`` alama is ``alamalinux``. A quick google for ``username cloud image {{distro name}}`` should do the trick. Then type ``ssh {{username}}@{{ip address}}``. Like this ``ssh [email protected]``.

## Troubleshooting SSH

Adding ``-v`` will show more details about what is going on. ``ssh -v [email protected]``. You can add more ``-vv`` for more details ``ssh -vvv [email protected]``.

1. Is your openvpn on?
2. Do you have the right ip adddress?
3. Is your instance connected to the correct network? ``External Network``
4. Is your security groups setup correctly?
5. Is you ssh key added correctly?
6. Is ssh trying to use the correct ssh key?
7. Do you have the correct user name?
8. Ask for help in #infra-helpdesk on discord.

## Conclusion

By following these steps, you can successfully launch an instance in OpenStack GUI, enabling you to deploy virtual machines to meet your computing needs within your cloud environment. Remember to configure your instance with the appropriate settings and resources to optimize its performance and functionality.

0 comments on commit 9980dad

Please sign in to comment.