Home Directory Utilities Check config / restart script

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Check config / restart script

Current Version
1.0
Last Release Date
2014-12-18
Compatible With
  • Nagios 3.x
  • Nagios 4.x
Owner
License
GPL
Hits
20174
Files:
FileDescription
nagios-reloadnagios-reload
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
A simple check/restart script to be located in /usr/local/bin/

Useful when you modify, configure, test and playing around in the cfg files of your nagios installation.

It does the "nagios -v .. check" and if errors found, it will report which cfg files and which lines.. If none found it will restart with a 5 seconds timer (in case you regret).
Reviews (1)
byuser745, May 7, 2015
1 of 1 people found this review helpful
Here is a one-liner to do it automatically (requires inotify-tools)

while inotifywait -q -r -e modify /etc/nagios/ ; do echo "filename is changed"; nagios-reload;sleep 1;done