OpenBSD Restart / Reload OpenSSH Without Rebooting

by on May 27, 2009 · 0 comments· last updated at May 27, 2009

There is no rc.d script provided under OpenBSD for sshd service. How do I restart OpenSSH sshd server without rebooting OpenBSD 4.x server?

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:

5367

Send 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`



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , ,

Previous Faq:

Next Faq: