Connecting to an Instance
Users can access Qumulus instances through various platforms without any obstacles in their workflow. Whether you're using Windows, macOS, or Linux, you can connect to your instances to effectively manage cloud resources.
Prerequisites
SSH Key Pair: Qumulus demands key pairs for all new instances during their creation process. Check that you possess an existing key pair ready for use. If you don't have one, Refer to the Qumulus documentation(link) for instructions on generating key pairs.
Public IP Address or Hostname: Obtain your instance's public IP address or hostname.
Steps to Connect
Prepare Your SSH Key Pair:
Verify Key Association:
Ensure your instance has a proper association with the correct SSH key pair.
Secure Your Key:
The private key created during setup should be downloaded and kept in a safe storage location. The secure connection depends heavily on this key for its establishment.
Connect to Your Instance
Select the method that matches your operating system.
1. For Windows Users:
1.1 Using MobaXterm:
Download and install MobaXterm.
Start by opening MobaXterm and navigate to Session >SSH.
Enter your public IP address or Hostname into the "Remote host" input field.
Click "OK" to initiate the connection.

1.2 Using Windows PowerShell:
Open PowerShell.
Access the directory where your private key file is stored.
Enter this command, substituting
path\to\your_private_key.pem
andusername@instance_ip_address
with your instance details:
ssh -i path\to\your_private_key.pem username@instance_ip_address

2. For macOS and Linux Users:
Open the Terminal application.
Check that your private key file possesses appropriate access permissions.
chmod 400 /path/to/your_private_key.pem
Connect to your instance using SSH:
ssh -i /path/to/your_private_key.pem username@instance_ip_address

Last updated