How Can I stop the email notifications. I am setting up a new server and getting tons of notifications. Wants to disable them for time being.
6 Answers
Click on "Process Info" in the left nav pane, and then "Disable Notifications", then "Commit".
- 110,608
You can also do it at a contact level, by disabling notifications for your Nagios contact. E.g.:
define contact {
contact_name JohnDoe
email johndoe@example.com
host_notifications_enabled 0
service_notifications_enabled 0
}
The other way to skin this cat is to use the host_notification_options and service_notification_options in the contact definition. Set them to n (none).
- 402
You can also do this via NAGIOS's command_file named pipe, if you have that defined. The advantages of doing it this way are it's internal to NAGIOS, it can be programmed from at or cron rather than requiring interaction with a web browser, and it doesn't require changing any of the config files.
To disable notifications (on CentOS6 EPEL NAGIOS - other distributions may have the command_file configured elsewhere):
echo "[`date +%s`] DISABLE_NOTIFICATIONS" > /var/nagios/rw/nagios.cmd
and to re-enable it later:
echo "[`date +%s`] ENABLE_NOTIFICATIONS" > /var/nagios/rw/nagios.cmd
- 81,580
Set both:
- service_notification_period &
- host_notification_period
to never instead of 24x7
- 172
- 1
- 2
You can also stop your mail server (service postfix stop) on the Nagios server, if you are relaying through the mail server on localhost where Nagios is installed. Then you can do postsuper -d ALL to delete all mails sitting in mailq.
- 21