How to Connect Your Domain via SSH (Enhance Control Panel)
If you want to connect your domain to the server via SSH, follow the steps below. Make sure you already have your login credentials from WCORS - Control Panel.
Here’s how:
--
Go to your Enhance control panel. (via https://web.wcors.com)
2.Navigate to Websites > Your Domain > Access > SSH Access. 3.Click Enable SSH if it’s off. 4.Use an app like PuTTY (Windows) or Terminal (Mac/Linux). 5.Connect with:
ssh -p 22 yourusername@yourdomain.com
You should have to generate the SSH Key in your local computer to allow login via SSH.
Step 1: Generate SSH Key on Your Computer
For Windows (Using Git Bash or PowerShell):
- Open Git Bash or PowerShell.
- Run this command:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Press Enter to accept default file location (~/.ssh/id_rsa).
And copy the desired key to the Enhance Control Panel (It can be found in Developer Tools)
For macOS or Linux:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com
Step 2: Copy the Public Key
cat ~/.ssh/id_rsa.pub
Copy the entire output line.
Step 3: Add Key in Enhance Panel
-
Go to Enhance Control Panel.
-
Navigate to: Websites > Your Domain > Access > SSH Access
-
Click Manage SSH Keys.
-
Paste your public key.
-
Save.
Step 5: Connect via SSH
Your SSH server can be accessed using password authentication with the details below:
ssh -p 22 yourusername@yourdomain.com