Knowledge Base
Categories: VPS_Dedi_Linux_Server_W_O_Control_Panel_Retail
Accessing your VPS or Dedicated Servers using SSH
What is Secure Shell (SSH)?
Secure Shell (SSH) is a cryptographic network protocol typically used to log into a remote machine and execute commands. It can transfer files using the associated SSH file transfer (SFTP) or secure copy (SCP) protocols. The standard port used to connect through SSH is 22.
Access via Windows (PuTTY)
Step 1: Download PuTTY.
Step 2: Open PuTTY.
Step 3: Enter your server's IP address (find it in your welcome email or Control Panel).
Step 4: Ensure the port is set to 22 and connection type is SSH.
Step 5: Click Open to start the session.
Step 6: When prompted, enter your username (usually root).
Step 7: Enter your password (provided in your welcome email).
Step 8: You are now logged into your server via SSH.
Access via Linux or Mac Terminal
Step 1: Open the Terminal application.
Step 2: Run the following command:
ssh root@your_server_ip
Step 3: Enter your password when prompted.
Step 4: You are now connected to your server via SSH.
Using SSH Key Authentication (Recommended)
Step 1: Generate an SSH key pair on your local machine:
ssh-keygen -t rsa -b 4096
Step 2: Copy your public key to the server:
ssh-copy-id root@your_server_ip
Step 3: Next time you connect, you won't need to enter your password.
Need More Help?
Contact our support team via chat, email, or phone for further assistance with SSH access.
Did you find this article helpful?