Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents


Default Linux Users 

In the new Instances the following default users are created :

OSUsername
Rocky Linuxcloud-user
Ubuntuubuntu

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.

...

  1. 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>
  2. 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.

...