Each GPU Server Blib runs a fully isolated instance of Ubuntu 22.04 LTS with full root-level control. You can access your server directly via SSH using the credentials provided in the management interface.
To access your server, open the Trooper.AI Management Interface and navigate to your active Blib instance.
Click on the “Actions” button to display the SSH connection details:
You will see the following information:
connect01.trooper.ai
)You may use the copy buttons to paste the values directly into your terminal.
Use a standard SSH command to connect to your server:
ssh USERNAME@HOSTNAME -p PORT
Replace USERNAME
, HOSTNAME
, and PORT
with the values from the dashboard.
Example:
ssh trooperai@connect01.trooper.ai -p 15012
If this is your first connection, your terminal may ask to confirm the server’s fingerprint:
The authenticity of host 'connect01.trooper.ai (IP)' can't be established.
Are you sure you want to continue connecting (yes/no)?
Type yes
and press Enter to proceed.
After a successful connection, you should see a standard shell prompt:
This indicates you are now logged into your GPU Server Blib.
Although you are logged in as a non-root user for security reasons, your account is fully privileged. You can execute administrative tasks using sudo
.
Examples:
sudo apt update
sudo fdisk -l
The first time you use sudo
, you will be prompted to enter the provided password.
rsync
, scp
, or configuration tools like Ansible
.If you’re using a newer Linux distribution on your local machine (e.g. Ubuntu 24.04+), your SSH client may default to public key authentication, even when you’re trying to use a password.
If your password seems to be rejected immediately, try forcing password authentication explicitly:
ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no USERNAME@HOSTNAME -p PORT
Replace USERNAME
, HOSTNAME
, and PORT
with your provided values.
This tells SSH to skip looking for keys and use the password method directly.
For any access-related issues, please contact support@trooper.ai or faster way on WhatsApp: +4961269289991.