How to Connect to Linux VPS
12:52, 15.07.2019
For Windows users:
We recommend using cross-platform tool PuTTY for SSH access. PuTTY is a free software application for Microsoft Windows operating systems which can be used to make an SSH connection to your server. You can download the application here and install it on your Windows:
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
Please install it and create a shortcut to your desktop. Then change a path to executable in shortcut’s properties. It should look like this (for Windows 7):
"C:\Program Files (x86)\putty\PUTTY.EXE" -ssh –P 56777 -l login -pw password IP address
Here are the parameters:
-P –SSH connection port – 56777 (our web hosting company using 56777 port instead of 22 SSH port)
-l – login
-pw – password
IP address should be the address of your server.
You can otherwise use Pageant - PuTTY automatic authentication agent.
In case you have multiple VPS servers, using a Linux terminal for accessing your server via SSH would be the best decision.
In order to do that, please open the Terminal and type:
ssh -p 56777 -l root x.x.x.x
where xxx.xxx.xxx.xxx is IP address of your server.