View Single Post

  #2 (permalink)  
Old 01-09-2006, 11:49 AM
monk's Avatar
monk monk is offline
Senior Member
User
 
Join Date: Jan 2005
Location: Tibet
My distro: Debian GNU/Linux
Posts: 482
Rep Power: 5
monk will become famous soon enough monk will become famous soon enough
Default

Use anyone of the following command set:

Login as a root:
Code:
/etc/init.d/sshd stop
/etc/init.d/sshd start
OR

Code:
kill -HUP `cat /var/run/sshd.pid`
If bash is shell:
Code:
kill -HUP $(cat /var/run/sshd.pid)
Reply With Quote