OpenBSD Restart / Reload OpenSSH Without Rebooting

by Vivek Gite · 0 comments

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`

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous FAQ:

Next FAQ:

nixCraft FAQ PDF Collection Now Available To All