Monit: Monitor BIND 9 (named) Name Server and Auto Restart SSH If It Does Not Respond
Q. How do I monitor my BIND 9 (named) server with monit which is chrooted at /var/lib/named directory? How do I restart bind (named) server if it does not respond or dead due to any issues under Debian / Ubuntu Linux?
A. You can easily restart or send alert when bind9 is not responding under Debian / Ubuntu or UNIX like operating system using monit.
Restart named (bind9) if does not respond to port 53
Open monitrc file, enter:
# vi /etc/monit/monitrc
Append following code, enter:
## bind check process named with pidfile /var/lib/named/var/run/bind/run/named.pid start program = "/etc/init.d/bind9 start" stop program = "/etc/init.d/bind9 stop" if failed host 127.0.0.1 port 53 type tcp protocol dns then restart if failed host 127.0.0.1 port 53 type udp protocol dns then restart if 5 restarts within 5 cycles then timeout
A note about RHEL / CentOS / Red Hat / Fedora Linux
You need following code for RHEL, enter:
## bind check process named with pidfile /var/named/chroot/var/run/named/named.pid start program = "/etc/init.d/named start" stop program = "/etc/init.d/named stop" if failed host 127.0.0.1 port 53 type tcp protocol dns then restart if failed host 127.0.0.1 port 53 type udp protocol dns then restart if 5 restarts within 5 cycles then timeout
Save and close the file. Restart monit, enter:
# /etc/init.d/monit restart
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Monit: Monitor SSHD Server and Auto Restart SSH If It Does Not Respond
- How To Hide BIND DNS Sever Version
- Ubuntu / Debian Linux: Install Monit Linux Server Monitoring Utility
- View Installation / Uninstallation Script Inside The RPM File
- How To Setup Vanity DNS Name Server Using BIND 9
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: /etc/init.d/monit, /etc/init.d/named, /etc/monit/monitrc, bind 9, Linux, linux monitor tool, monitor bind named server, monitor linux connection, monitoring system, name server, server monitoring, TCP/IP Connection Monitor, UNIX




Recent Comments
Today ~ 2 Comments
Yesterday ~ 10 Comments
Yesterday ~ 12 Comments
09/03/2008 05:29 pm (2 days ago) ~ 6 Comments
09/03/2008 01:14 pm (2 days ago) ~ 1 Comment