SSH is a tool used to connect to your server. This is how 95% of your system is setup.
To use ssh, you'll need an ssh client for your local computer. We recommend PuTTY.
Once you've installed your ssh client, load it up and you should be given a space to enter some information. You'll want to select "SSH" on port 22. You can paste in the name of your server "domain.com" or the ip "1.2.3.4" in the the space that says "Host Name (or IP Address)". Click Open.
If you've entered all info correctly, you should be prompted with a large black screen asking for your login information. If you are doing system tasks, you'll probably need root access. If you have root access, enter "root" and press enter. Sometimes it can take several seconds before you see any change. Enter the root password (and press enter), and if everything works, you should see a command prompt, eg: [root@server]#
You are now on the server. This is your starting point.
From here you can do anything, including destroy your server, so you must be very careful with the commands you enter.
Some basic commands include:
List: ls
[root@server]# ls
file1.txt file2.txt file3.txt
Change Directories: cd
[root@server]# cd /home/admin
Remove a file: rm
[root@server]# rm file1.txt
rm: remove `file1.txt' ? y
Once you've finished working, you can type
[root@server]# exit
and the ssh window should be closed.
Most Popular Articles
Do I need a Dedicated Server?
Having a dedicated server gives you high flexibility and a lot of options for your site. You...
Who does manage my Dedicated Server?
All our Dedicated plans come completely unmanaged unless you buy a managed service addon. What it...
Do you help to setup control panels and operating systems?
All dedicated servers come with the operating system of customer choice preinstalled. All...
Which OS am I using?
During support requests, we will often ask a client which OS version they're using. Running all...
Setting the system date and clock
To set the system clock, use the date command. For Redhat Systems, use the following format: date...