Zabbix 监控服务器配置Eail服务

一、系统环境

系统版本:Ubuntu 20.04
监控版本:Zabbix 6.0

二、安装mail服务

1.unbuntu 18.04和20.04移除了heirloom-mailx,需要另外配置软件源

root@Zabbix-Server:~# vim /etc/apt/sources.list
##加入
deb http://cz.archive.ubuntu.com/ubuntu xenial main universe
root@Zabbix-Server:~# apt-get update
root@Zabbix-Server:~# apt-get install -y heirloom-mailx mailutils

2.配置SMTP信息(以网易为例)

注意:网易企业SMTP server需要单独获取,获取网址:https://qiye.163.com/help/client-profile.html

root@Zabbix-Server:~# vim /etc/s-nail.rc 
set from="XXXXX@XXXXX.com"    #邮箱地址
set smtp="smtps://smtphz.qiye.163.com:465"   #SMTP server地址
set smtp-auth-user="XXXXX@XXXXXX.com"    #邮箱地址
set smtp-auth-password="XXXXXX"    #邮箱授权码,不是密码!
set smtp-auth=login

3.启用网易邮箱授权码

image

三、测试发送邮件

root@Zabbix-Server:~# echo "hello world" |s-nail -s 'title' xxxxxx@qq.com

image

posted @ 2022-04-02 10:19  人生值得  阅读(167)  评论(0编辑  收藏  举报