1、服务端配置
编写邮件发送脚本
[fieldyang@www alertscripts]$ pwd
/usr/lib/zabbix/alertscripts
[fieldyang@www alertscripts]$ ll
总用量 8
-rwxr-xr-x 1 root root 136 5月 16 23:28 mail.sh
-rwxr-xr-x 1 root root 751 5月 16 23:56 send_mail.py
[fieldyang@www alertscripts]$ cat mail.sh
#!/bin/sh
message=$(echo -e $1 | tr "\r\n" "\n")
subject=$(echo -e $2 | tr "\r\n" "\n")
sendto=
echo "$message" | mail -s "$subject" $3
[fieldyang@www alertscripts]$ cat send_mail.py
#!/usr/bin/python
#coding:utf-8
import smtplib
from email.mime.text import MIMEText
import sys
mail_host = 'smtp.qq.com'
mail_user = xxx
mail_pass = 'xxxx' à必须是邮箱的授权码,不是密码
mail_postfix = 'qq.com'
def send_mail(to_list,subject,content):
me = "zabbix"+"<"+mail_user+"@"+mail_postfix+">"
msg = MIMEText(content, 'plain', 'utf-8')
msg['Subject'] = subject
msg['From'] = me
msg['to'] = to_list
try:
s = smtplib.SMTP()
s.connect(mail_host)
s.login(mail_user,mail_pass)
s.sendmail(me,to_list,msg.as_string())
s.close()
return True
except Exception,e:
print str(e)

本文详细介绍了如何在Zabbix5中配置QQ邮件告警,包括服务端邮件脚本的编写,Zabbix Web界面的报警媒介类型设置,触发器与动作的创建,以及用户报警媒介的添加。通过这些步骤,可以实现当系统出现故障时,自动发送邮件通知。
最低0.47元/天 解锁文章
492

被折叠的 条评论
为什么被折叠?



