SSH (Secure Shell) gives you command-line access to your hosting account, allowing you to run advanced commands, install software, and manage files more efficiently. Here is how to enable and use SSH on BurjHost.
Step 1: Check if Your Plan Supports SSH
-
SSH is typically available on VPS and Dedicated Server plans.
-
Some Shared Hosting plans may offer limited SSH access. Check your plan details or contact BurjHost support.
Step 2: Enable SSH in cPanel (If Available)
-
Log in to your cPanel.
-
In the "Security" section, look for "SSH Access" or "Manage SSH Keys."
-
Generate a Key Pair:
-
Click "Generate a New Key."
-
Choose a key name (e.g.,
id_rsa), a password (optional but recommended), and the key type (RSA is standard). -
Click "Generate Key."
-
-
Authorize the Public Key:
-
Once generated, you will see your new key in the list.
-
Click "Manage" next to the key, then click "Authorize" to enable it for login.
-
-
Download the Private Key:
-
In the key list, click "View/Download" next to your private key.
-
Save the
.ppkor.pemfile to your computer. This is your "key" to log in.
-
Step 3: Connect via SSH
-
On Mac/Linux: Use Terminal:
ssh username@serverip -p 22
(If using a key:ssh -i /path/to/privatekey username@serverip) -
On Windows: Use PuTTY:
-
Load your private key in PuTTY's Connection > SSH > Auth settings.
-
Enter your server IP and username.
-
Alternative: Password-Based SSH
If your hosting provider allows password authentication, you can simply use your cPanel username and password.
Once connected, you have full command-line access to your account!