Sesterce Cloud Doc
  • 👋Welcome on Sesterce Cloud
    • Glossary
    • Account creation
    • Manage your account
    • Team accounts
    • Payment & Billing
    • Invoicing
  • 🚀Compute instances
    • Configure your Compute Instance
      • SSH Keys management
      • Persistent storage (volumes)
    • Terminal connection
  • 💬AI Inference instances
    • Inference Instance configuration
      • Select your Flavor
      • Select your regions
      • Autoscaling limits
    • Edit an inference instance
    • Chat with Endpoint
  • ▶️Manage your instances
  • 🔗API Reference
    • Authentication
    • GPU Cloud instances
    • SSH Keys
    • Volumes
    • Inference Instances
  • 📗Tutorials
    • Which compute instance for AI models training and inference?
    • Expose AI model from Hugging Face using vLLM
Powered by GitBook
On this page
  • How to mark a SSH Key as default?
  • How to add multiple SSH Key in a Compute instance?

Was this helpful?

  1. Compute instances
  2. Configure your Compute Instance

SSH Keys management

PreviousConfigure your Compute InstanceNextPersistent storage (volumes)

Last updated 1 month ago

Was this helpful?

To launch an instance on Sesterce Cloud, you need to link a SSH Key to it. You can paste your public key directly from the launching path, or via the Settings page.

Currently, it is not possible to add a SSH Key to an instance already live. Make sure to add all keys you need before launching your compute instance. You can add several keys to a single instance.

To generate your public SSH key from your laptop, open your terminal and type the following command: ssh-keygen -t ed25519 -C "youremail@example.com" . Then, type enter to select by-default saving place and use the following command to expose your public key: cat ~/.ssh/id_ed25519.pub

How to mark a SSH Key as default?

To mark a SSH Key as default, click on the 3 dots icon an select "Make Default". This will automatically select the SSH Key when you'll create a new Compute instance.

How to add multiple SSH Key in a Compute instance?

You can merge several SSH Keys by pasting the keys one after the other in the text field as below (make sure to brake line between the keys):

Then, select the SSH Key created to launch your instance. Both users will be able to connect to the Compute instance.

🚀