| Table of Contents |
|---|
Default Linux Users
In the new Instances the following default users are created :
| OS | Username |
|---|---|
| Rocky Linux | cloud-user |
| Ubuntu | ubuntu |
The ssh public key set during the Instance creation is added to the "~/.ssh/authorized_keys" file of the default user.
Remote SSH Access
| Info |
|---|
| The access to the Instances on CCI is supported only via ssh keys authentication. Password authentication is disabled. |
...
- setup the "private key" to the proxy instance under the user's "~/.ssh/ " folder and then connect :
Code Block ssh -J <default username>@<gateway instance external ip> <default username>@<target instance private ip>
- use a "ssh-agent" for managing the keys authentication and forward the authentication agent connection (option -A) :
Code Block ssh -A -J <default username>@<gateway instance external ip> <default username>@<target instance private ip>
Console Access
The Openstack Horizon Dashboard offers the possibility to connect to the instance from a web console.
...