标签:
How do I restart SSH service under Linux or UNIX operating systems?
The command to restart ssh are as follows (you must login as root user):
# /etc/init.d/sshd restart
OR# service sshd restart
# /etc/init.d/ssh restart
OR# service ssh restart
# /etc/rc.d/sshd restart
# kill -HUP `cat /var/run/sshd.pid`
Please note that the location of /var/run/sshd.pid may change. So just search a bit through /var/run/ directory.
HowTo: Restart SSH Service under Linux / UNIX
标签:
原文地址:http://www.cnblogs.com/shangdawei/p/4561528.html