You need to send HUP single to OpenSSH SSHD server using kill command. The default pid file is located at /var/run/sshd.pid:
# cat /var/run/sshd.pid
Sample output:
5367Send HUP single to sshd PID # 5367:
# kill -HUP 5367
This can be done with a single command as follows:
# kill -HUP `cat /var/run/sshd.pid`
No comments:
Post a Comment