Zeupiter Docs
  • Welcome to Zeupiter Docs
  • On-Demand Multi Cloud
    • Getting Started
      • AWS
      • GCP
    • Compute
      • Instances
        • Create an Instance
        • Manage an Instance
        • Connect to Instance
      • Storages
      • Networks
      • Snapshots
      • Shared Drives
      • Firewalls
      • Inference
    • Cost & Usage
    • Billing
    • ⚔️Gladius
    • 🧠Jupiter AI
  • Guides
    • How to generate SSH keys
    • How can I request a custom configuration?
    • How do I run distributed training on Zeupiter?
    • How to fine-tune a model?
  • Additional Resources
    • API Reference
    • Linkedin
    • Github
    • Twitter
    • Join Us
Powered by GitBook
On this page
  • Connecting to a Linux instance
  • Connecting to a Windows instance

Was this helpful?

  1. On-Demand Multi Cloud
  2. Compute
  3. Instances

Connect to Instance

PreviousManage an InstanceNextStorages

Last updated 2 months ago

Was this helpful?

Connecting to a Linux instance

You can access your Linux based instances only via SSH

Setting up SSH access Before launching an instance, you need to add an SSH key. During the instance launch process, you’ll be asked to provide this SSH key to enable secure access after startup. You can either import an existing key or generate a new one directly in the Zeus dashboard.

Adding an existing SSH key If you already have an SSH key, you can copy paste to authenticate with your instances. Zeupiter supports the following SSH key formats:

  • OpenSSH (default format for ssh-keygen)

  • RFC4716 (used by PuTTYgen for public keys)

  • PKCS8

  • PEM

To add an existing SSH key:

  1. Go to the page in the Zeus dashboard.

  2. Click Add SSH Key. A dialog will appear.

  3. Paste your public SSH key into the input box.

  4. Enter a name for your key, then click Add SSH key.

Generating a new SSH key To generate a new SSH Key follow the steps here: How to generate SSH keys

Establishing an SSH connection Once you’ve added or generated an SSH key, you can connect to your instance. To establish an SSH connection:

  1. Go to the Instances tab in the Zeus dashboard.

  2. Expand details, click your instance’s IP to copy it.

  3. On your local machine, open a terminal and run the following command. Replace <SSH-KEY-FILE-PATH> with your SSH key’s file path and <INSTANCE-IP> with your instance’s IP address:

ssh -i '<SSH-KEY-FILE-PATH>' ubuntu@<INSTANCE-IP>  

Connecting to a Windows instance

You can use your local desktop RDP Client to connect to your windows instance. Follow

SSH Keys
Help