SSH access to running instances
Overview
Clever Cloud allows you to connect to running instances via SSH.
While direct SSH access to instances is not recommended in an immutable infrastructure setup, it can be useful for debugging purposes.
Purpose
Clever Cloud instances are to be seen as read-only resources. Any change made on an instance will not be persisted. You can use SSH access for quick tests, but if you want to persist changes, you need to commit them in your repository. Changes made on instances are not kept across deployments.
bash
is installed in your Docker application, you will be able to connect directly inside your container. Contact the support if you need help to debug your Docker applications.Requirements
You need to have at least one of the following installed locally:
- the Clever Tools CLI(/doc/cli)
- an SSH client (e.g putty for windows users)
Make sure you have a properly configured SSH key
To use SSH access, you need to have a SSH key properly configured in your Clever Cloud account. Please refer to the SSH keys section of the documentation to know how to set up your SSH keys.
Using Clever Tools CLI
In order to access the machine via SSH using the Clever Tools CLI
you need to have an application running on Clever Cloud and have linked it with your local repository using the Clever Tools CLI with clever link --org <your_application's_organization_id> <your_application_id>
Accessing your machine
You can access running instances of a linked application with $ clever ssh
in the linked application’s repository locally.
clever ssh
> Opening an ssh shell
> bas@67fbf787-3518-47bb-abd9-2c2575844edd ~ $
If multiple instances are running, you will be asked which one to use:
clever ssh
> 1) Sleepy Ponita - Instance 0 - UP (11281f38-31ff-43a7-8595-a2d82630c32b)
> 2) Tense Caterpie - Instance 1 - UP (b10d19d9-5238-408b-b038-3e32c7a301c2)
> Your choice: 1
> Opening an ssh shell
> bas@11281f38-31ff-43a7-8595-a2d82630c32b ~ $
You are now connected to the machine.
Note for Windows users
$ clever ssh
command will fail on PowerShell or cmd.exe if there is no ssh.exe
in your path. The most straightforward solution is to start $ clever ssh
from git-bash
but you can also add ssh.exe
in your path..
Using an SSH client
You can connect using only your ssh client:
ssh -t ssh@sshgateway-clevercloud-customers.services.clever-cloud.com <app_id>
You can omit the application ID. In that case, you will be prompted to choose an organization and an application.
You can validate connection to remote server with this fingerprint :
ED25519 key fingerprint is SHA256:lys1oC3plDGyAsWD7Yd5fJVKQUV/Pbn/M5KI5GyAj5s.
RSA key fingerprint is SHA256:0odQb8NQPKYNCme2Nf3Xrz3Bc9kmrDK6eSJGIzj9aEA.
-t
flag is mandatory for the ssh connection to work properly. If your terminal hangs and you see pseudo-terminal will not be allocated because stdin is not a terminal
, it’s likely you’ve forgotten the -t
flag.Access your application’s folder
No matter wich way you’ve decided to use to SSH to the machine, your application’s folder is located at: /home/bas/<app_id>
.
Show your application’s logs
If you want to show your application’s logs while you debug:
journalctl -efa -u bas-deploy.service
You can also use journalctl
with other options if you need to.
Did this documentation help you ?