Accessing a Linux Instance from a Linux or macOS
You can access a Linux instance from a Linux or macOS operating system using the OpenSSH client, which is installed by default on most machines.
This procedure only applies to instances launched using official OMIs, and whose keypair authentication system you did not modify after launch. Otherwise, you need to use the method corresponding to the authentication system you implemented. For more information, see About Keypairs.
Before you begin:
|
To access the instance using OpenSSH, type the ssh command in a terminal of your machine following this syntax:
$ ssh -i KEYPAIR USER@INSTANCE_IP
This command contains the following attributes that you need to specify:
-
KEYPAIR
: The path to the .rsa file containing the private key on your computer. -
(optional)
USER
: The user of your instance.The name of the default user depends on the OMI used:
-
outscale
for Ubuntu 18 and Centos 7 OMIs released since 20 December 2018 -
ubuntu
for older Ubuntu OMIs -
centos
for older Centos 7 OMIs and Centos 6 OMIs
-
-
INSTANCE_IP
: The public IP of the instance.If you are using a VPN or a DirectLink connection, you can use the private IP of the instance.
Related Pages