This guide explains how to securely connect to your Omnixia instance using SSH, covering steps for Windows, macOS, and Linux users. We'll also explain how to save the provided private key text as a file.
Step 1: Save the Private Key Provided on the Website
- When you receive the private key in text format:
- Copy the entire key (including the
-----BEGIN PRIVATE KEY-----
and-----END PRIVATE KEY-----
lines).
- Copy the entire key (including the
- Open a text editor (e.g., Notepad on Windows, TextEdit on macOS, or nano on Linux).
- Paste the key into the editor.
- Save the file with a
.pem
extension. For example:- Windows:
OmnixiaDefaultKey.pem
- macOS/Linux:
~/Keys/OmnixiaDefaultKey.pem
- Windows:
⚠️ Ensure the file does not have additional extensions like .txt
. This can interfere with its usage.
Step 2: Set Up Your System for SSH Access
On macOS and Linux:
-
Open the terminal.
-
Navigate to the directory where you saved the
.pem
file. -
Use the following command to secure the private key:
Replace
/path/to/private-key.pem
with the path to your key file.Example:
On Windows (Using PuTTY):
PuTTY does not directly use .pem
files. You need to convert the key to a PuTTY-compatible .ppk
file using PuTTYgen.
-
Download PuTTY and PuTTYgen
-
Convert
.pem
to.ppk
:- Open PuTTYgen.
- Click Load and select the
.pem
file you saved earlier. - Click Save private key and save the file as
OmnixiaDefaultKey.ppk
.
-
Connect to Your Instance:
- Open PuTTY.
- In the Host Name (or IP address) field, enter the public IP address of your instance.
- In the Category pane, navigate to
Connection > SSH > Auth
. - Under Private key file for authentication, browse and select your
.ppk
file. - Click Open to start the session.
- Use the appropriate username (e.g.,
ubuntu
,centos
) when prompted.
Step 3: Connect to Your Omnixia Instance
macOS and Linux:
Run the SSH command:
Windows with Command Prompt/PowerShell:
You can also use OpenSSH if it's installed:
- Open Command Prompt or PowerShell.
- Run the same SSH command as above.
Windows with PuTTY:
Follow the PuTTY steps outlined earlier.
Step 4: Replace the Placeholders
/path/to/private-key.pem
: Full path to the.pem
file (on macOS/Linux) or.ppk
file (on Windows with PuTTY).username
: Based on the instance type:- Ubuntu:
ubuntu
- CentOS:
centos
- Debian:
admin
- Bitnami:
bitnami
- Plesk:
ubuntu
- cPanel & WHM:
centos
- Ubuntu:
public-ip-address
: Public IP of the instance, available in your Omnixia console.
Examples of SSH Commands
-
Absolute Path (macOS/Linux):
-
Relative Path (macOS/Linux):
-
PuTTY on Windows: Use the
.ppk
file and connect using PuTTY's interface.
Tips and Troubleshooting
-
File Permissions:
- On macOS/Linux, ensure the
.pem
file permissions are correct: The output should show permissions as-r--------
.
- On macOS/Linux, ensure the
-
Verify the IP Address:
- Double-check the public IP address in your Omnixia console.
-
Incorrect Key Error:
- Ensure the key is saved correctly and matches the format provided.
-
PuTTY Connection Issues:
- Verify the
.ppk
file was properly generated. - Ensure the public IP is correct and the instance is running.
- Verify the