主頁 > 知識庫 > zabbix實(shí)現(xiàn)郵件告警的方法

zabbix實(shí)現(xiàn)郵件告警的方法

熱門標(biāo)簽:百應(yīng)電銷機(jī)器人靠譜嗎 遼寧電銷平臺外呼系統(tǒng)軟件 菏澤crm外呼系統(tǒng)價(jià)格 coreldraw地圖標(biāo)注 營銷電銷機(jī)器人招商 申請400電話號碼多少錢 物超所值的400電話申請 信陽銷售外呼系統(tǒng)招商 如何在各種地圖標(biāo)注自己的地址

根據(jù)網(wǎng)絡(luò)教程實(shí)現(xiàn)。zabbix3.4,使用腳本和sendEmail。

1.下載并解壓縮sendEmail到/usr/local/bin下面,修改權(quán)限。

下載網(wǎng)址:

SendEmail - Send email with this free command line email client  http://caspian.dotconf.net/menu/Software/SendEmail/

修改權(quán)限:

chown zabbix:zabbix /usr/local/bin/sendEmail

2.進(jìn)行發(fā)郵件測試。

/usr/local/bin/sendEmail -f xxxx@163.com(發(fā)件郵箱) -s smtp.163.com -u "郵件標(biāo)題" -m "郵件內(nèi)容" -o message-content-type=html -o message-charset=utf8 -xu xxxx@163.com(發(fā)件郵箱賬號) -xp “網(wǎng)易郵箱授權(quán)碼” -t “目標(biāo)郵箱”

3.發(fā)郵件測試通過后,進(jìn)入/usr/local/zabbix/share/zabbix/alertscripts/目錄,并新建mail.sh文件,授予權(quán)限;

4.mail.sh內(nèi)容:

#!/bin/bash
to=$1
subject=$2
body=$3
/usr/local/bin/sendEmail -o tls=auto -f xxxx@163.com -t "$to" -s smtp.163.com -u "$subject" -o message-content-type=html -o message-charset=utf8 -xu xxxx@163.com -xp "郵箱客戶端授權(quán)碼" -m "$body"

5.測試報(bào)錯

[root@centos7 alertscripts]# ./mail.sh “目標(biāo)郵箱” test_topic hello_world!
*******************************************************************
 Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client
 is deprecated! Please set SSL_verify_mode to SSL_VERIFY_PEER
 possibly with SSL_ca_file|SSL_ca_path for verification.
 If you really don't want to verify the certificate and keep the
 connection open to Man-In-The-Middle attacks please set
 SSL_verify_mode explicitly to SSL_VERIFY_NONE in your application.
*******************************************************************
 at /usr/local/bin/sendEmail line 1906.
invalid SSL_version specified at /usr/share/perl5/vendor_perl/IO/Socket/SSL.pm line 444.

在sendemail中1906行的內(nèi)容,從

if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => ‘SSLv3 TLSv1‘)) {

修改為

if (! IO::Socket::SSL->start_SSL($SERVER)) {

再次測試,成功。

[root@centos7 alertscripts]# ./mail.sh “目標(biāo)郵箱” test_topic hello_world!
*******************************************************************
 Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client
 is deprecated! Please set SSL_verify_mode to SSL_VERIFY_PEER
 possibly with SSL_ca_file|SSL_ca_path for verification.
 If you really don't want to verify the certificate and keep the
 connection open to Man-In-The-Middle attacks please set
 SSL_verify_mode explicitly to SSL_VERIFY_NONE in your application.
*******************************************************************
 at /usr/local/bin/sendEmail line 1906.
Aug 08 15:42:42 wanbu sendEmail[25763]: Email was sent successfully!

6.zabbix-web配置

在zabbix3.4中,有3處需要配置,actions,media type,users。actions負(fù)責(zé)判斷,發(fā)送郵件;media type負(fù)責(zé)選擇腳本,傳遞參數(shù);users負(fù)責(zé)明確告警信息發(fā)送給誰等信息。

按照官網(wǎng)的介紹配置即可,這部分實(shí)在懶得寫了。唯一需要注意的是,media type需要添加3個(gè)參數(shù),分別是{ALERT.SENDTO},{ALERT.SUBJECT},{ALERT.MESAGE},分別對于mail.sh中的to、subject和body。

7.最后,點(diǎn)擊“Reports”-“action log”,可以查看郵件是否發(fā)送成功,不成功的原因。

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

標(biāo)簽:廈門 湖北 內(nèi)江 江門 泰安 瀘州 玉樹 江西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《zabbix實(shí)現(xiàn)郵件告警的方法》,本文關(guān)鍵詞  zabbix,實(shí)現(xiàn),郵件,告警,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《zabbix實(shí)現(xiàn)郵件告警的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于zabbix實(shí)現(xiàn)郵件告警的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章