How to Connect
After renting a GPU server on Clore.ai, you can connect via SSH or access pre-installed services like Jupyter Notebook.
Connection Information
Once your order is active, you'll find connection details in:
My Orders page → Click on your active order
Order details will show: IP address, SSH port, and credentials
SSH Connection
Linux / macOS
Open Terminal and run:
ssh root@<IP_ADDRESS> -p <PORT>Example:
ssh [email protected] -p 22022Windows
Using PowerShell:
ssh root@<IP_ADDRESS> -p <PORT>Using PuTTY:
Download PuTTY
Enter the IP address in "Host Name"
Enter the port number in "Port"
Click "Open"
Login as
rootwith the provided password
SSH Keys (Recommended)
For passwordless login, add your SSH public key:
Go to Account → SSH Keys
Click Add Key
Paste your public key (usually
~/.ssh/id_rsa.pub)Save
Your key will be automatically deployed to new rentals.
Generate SSH Key (if you don't have one)
Jupyter Notebook Access
Many images come with Jupyter pre-installed:
Check your order details for the Jupyter URL
Open the URL in your browser (usually
http://<IP>:<JUPYTER_PORT>)Enter the token shown in your order details
File Transfer
Using SCP
Upload file to server:
Download file from server:
Using rsync
For larger transfers or syncing directories:
Port Forwarding
To access services running on the server locally:
This forwards server port 8080 to your local port 8080.
Common Issues
Connection refused
Check if the server is fully booted (wait 2-3 minutes after order starts)
Permission denied
Verify password/SSH key is correct
Connection timeout
Check if the port is correct
Host key changed
Remove old key: ssh-keygen -R [<IP>]:<PORT>
Useful Commands After Connecting
Check GPU status:
Check available disk space:
Check system resources:
Last updated
Was this helpful?