我已经在 CentOS 6.3 Final 上配置了 Nagios 3.4.4。我还配置了 Postfix 和 SMTP 电子邮件服务器。我已经从控制台验证我能够发送电子邮件通知并在指定地址接收它们。
Nagios 配置为通过电子邮件发送通知主机和通过电子邮件通知服务。我可以从 Nagios 日志中看到 Nagios 发送了服务通知警报和客户通知。但在 /vag/log/maillog 上看不到任何内容。也没有错误。
我甚至从控制台发出下面的命令来执行‘command_line’,它们能够向提到的地址发送电子邮件。
命令.cfg
# 'notify-host-by-email' command definition
define command{
command_name notify-host-by-email
command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | sudo /bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$
}
# 'notify-service-by-email' command definition
define command{
command_name notify-service-by-email
command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n" | sudo /bin/mail -s "** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$
}
联系人配置文件
define contact{
contact_name manish
service_notification_period 24x7
host_notification_period 24x7
service_notification_options w,u,c,r,f
host_notification_options d,u,r,f
service_notification_commands notify-service-by-email
host_notification_commands notify-host-by-email
email [email protected]
}
define contactgroup {
contactgroup_name email
alias Email Group
members manish
}
Nagios 组
cat /etc/group |grep nagios
nagios:x:502:nagios,apache
nagcmd:x:503:nagios,apache
答案1
您需要在主机/服务定义中配置联系人或联系人组。我通常创建一个模板主机和服务,然后使用继承进行覆盖。
http://nagios.sourceforge.net/docs/3_0/objectdefinitions.html#host http://nagios.sourceforge.net/docs/3_0/objectdefinitions.html#service http://nagios.sourceforge.net/docs/3_0/objectinheritance.html
答案2
在联系人配置文件文件:
define contact{
contact_name nagiosadmin ; Short name of user
use generic-contact ; Inherit default values
alias Nagios Admin ; Full name of user
email [email protected] }
在nagios配置文件:
# ADMINISTRATOR EMAIL/PAGER ADDRESSES
admin_email=nagios@localhost
(或者)
你可以检查一下网址:
使用电子邮件和寻呼机通知定义 Nagios 联系人的 4 个步骤
答案3
所有配置均正确,Nagios 和 Postfix 端均未发现任何错误。结果发现 Nagios 无法触发“mail”命令来实际发送电子邮件通知。
我改变了命令的行为以运行 .php 来起草 HTML 电子邮件模板,然后运行 .php 使用命令发送电子邮件mail
。
对于上述情况,这种方法对我来说很有效。请使用http://exchange.nagios.org/directory/Addons/Notifications/Send-HTML-Alert-Email-v2/details以防有人遇到类似的问题。