RATE THIS ANSWER
+1
Click to Vote:
1
0
Your going to want to make sure you have the SSH port open on your server. Also make sure SSHd is running.
Check if ssh is even running
service sshd status
or
/etc/init.d/sshd status
or
netstat -pan | grep ssh
or
nmap -sT localhost
look for port 22
If you see nothing then
service sshd start
or
/etc/init.d/sshd start