Nagios XI 2011R2.4 No Email Alerts
-
- Posts: 31
- Joined: Thu Jan 26, 2012 1:12 pm
Nagios XI 2011R2.4 No Email Alerts
We currently have a nagios core server running in our production environment. I am now attempting to configure our new nagiosxi server to take over this role. I cannot figure out why email alerts are not being sent though. I am able to send test emails from the system though. Any assistance would be greatly appreciated.
Re: Nagios XI 2011R2.4 No Email Alerts
Are you using our VMWare VM? It is possible that you don't have a mail server installed. Try running in terminal:
If you can't find mail, run:
Since, you are migration from Core, please, review our documentation on Users and Contacts in Nagios XI:
http://assets.nagios.com/downloads/nagi ... ntacts.pdf
Hope this helps.
Code: Select all
which mail
Code: Select all
yum install -y mailx
http://assets.nagios.com/downloads/nagi ... ntacts.pdf
Hope this helps.
Be sure to check out our Knowledgebase for helpful articles and solutions!
-
- Posts: 31
- Joined: Thu Jan 26, 2012 1:12 pm
Re: Nagios XI 2011R2.4 No Email Alerts
We are using the vmWare VM. I got back the following when running "which mail"
/usr/bin/which: no mail in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
Regarding contacts is it done differently than in the Core product?
/usr/bin/which: no mail in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
Regarding contacts is it done differently than in the Core product?
-
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Nagios XI 2011R2.4 No Email Alerts
You should be able to do the following
Code: Select all
yum install mailx -y
-
- Posts: 31
- Joined: Thu Jan 26, 2012 1:12 pm
Re: Nagios XI 2011R2.4 No Email Alerts
Awesome. That worked! Thank you.