标签:
使用外部邮箱账号发送报警邮件设置
一、关闭sendmail或者postfix
1 service sendmail stop #关闭 2 chkconfig sendmail off #禁止开机启动 3 service postfix stop 4 chkconfig postfix off
1 http://nchc.dl.sourceforge.net/project/heirloom/heirloom-mailx/12.4/mailx-12.4.tar.bz2 2 tar jxvf mailx-12.4.tar.bz2 #解压 3 cd mailx-12.4 #进入目录 4 make #编译
1 make install UCBINSTALL=/usr/bin/install #安装 2 ln -s /usr/local/bin/mailx /bin/mail #创建mailx到mail的软连接 3 ln -s /etc/nail.rc /etc/mail.rc #创建mailx配置文件软连接 4 whereis mailx #查看安装路径
mailx -V #查看版本信息
三、配置Zabbix服务端外部邮箱
vi /etc/mail.rc #编辑,添加以下信息
1 set from=xxxxxxx@126.com smtp=smtp.126.com 2 set smtp-auth-user=xxxxxxx@126.com smtp-auth-password=password 3 set smtp-auth=login
:wq! #保存退出
echo "zabbix test mail" |mail -s "zabbix" xxxx@126.com
标签:
原文地址:http://www.cnblogs.com/nb-blog/p/5340974.html