sendEmail是一個輕量級,命令行的SMTP郵件客戶端。若是你須要使用命令行發送郵件,那麼sendEmail是很是完美的選擇:使用簡單而且功能強大.這個被設計用在php、bash
perl和web站點使用。
以上是sendEmail的簡單介紹,千萬不要和sendmail搞混掉了。用了sendEmail你將不在喜歡sendmail了.php
1、配置sendEmailhtml
一、下載安裝sendEmailnginx
[root@lys1 ~]# wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz --2016-09-19 03:04:07-- http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz 正在解析主機 caspian.dotconf.net... 69.164.196.234 正在鏈接 caspian.dotconf.net|69.164.196.234|:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 200 OK 長度:29740 (29K) [application/x-gzip] 正在保存至: 「sendEmail-v1.56.tar.gz」 100%[==================================================================================================================================================================================================>] 29,740 160K/s in 0.2s 2016-09-19 03:04:08 (160 KB/s) - 已保存 「sendEmail-v1.56.tar.gz」 [29740/29740]) [root@lys1 ~]# tar -xf sendEmail-v1.56.tar.gz #解壓後就能夠使用了 [root@lys1 ~]# mv sendEmail-v1.56/sendEmail /usr/local/bin/
二、發送郵件測試web
1 [root@lys1 ~]# /usr/local/bin/sendEmail -f 290273056@qq.com -t liuyisai@worldjoy.cn \ 2 > -s smtp.qq.com -u "郵件主題" -o message-content-type=html -o message-charset=utf8 \ 3 > -xu 290273056@qq.com -xp xxxxxx -m "郵箱內容" 4 Sep 19 03:12:54 lys1 sendEmail[2154]: Email was sent successfully! 5 [root@lys1 ~]# 6 /usr/local/bin/sendEmail 命令主程序 7 -f ttlsafrom@163.com 發件人郵箱 8 -s smtp.163.com 發件人郵箱的smtp服務器 9 -u "我是郵件主題" 郵件的標題 10 -o message-content-type=html 郵件內容的格式,html表示它是html格式 11 -o message-charset=utf8 郵件內容編碼 12 -xu ttlsafrom@163.com 發件人郵箱的用戶名 13 -xp 123456 發件人郵箱密碼 14 -m "我是郵件內容" 郵件的具體內容
郵件發送成功vim
2、zabbix自定義腳本報警介質 bash
zabbix媒介類型包括mail、sms、自定義腳本,咱們用的最多的仍是腳本媒介,再次咱們就不講另外兩個媒介了。當事件通知到腳本,會傳遞三個參數它,分別爲$1(發送給誰) $2(標題) $3(內容)。例如發送郵件給support@ttlsa.com,標題爲nginx離線,內容是IP地址:1.1.1.1,nginx離線,請當即處理。服務器
一、媒介配置app
點擊administrator->media types->create media types測試
script name:腳本名稱(須要先定義AlertScriptsPath,mail.sh放在這個目錄下,寫絕路路徑沒用)編碼
二、配置AlertScriptsPath
[root@lys1 ~]# vim /etc/zabbix/zabbix_server.conf
AlertScriptsPath=/etc/zabbix/alertscripts
三、編寫報警腳本
1 [root@lys1 ~]# vim /etc/zabbix/alertscripts/mail.sh 2 #!/bin/bash 3 #function:ZABBIX alarm mail 4 #author:liu yisai 5 #date:20160922 6 7 to=$1 8 subject=$2 9 body=$3 10 11 /usr/local/bin/sendEmail -f 290273056@qq.com -t "$to" -s smtp.qq.com -u "$subject" -o message-content-type=html -o message-charset=utf8 -xu 290273056@qq.com -xp xxxxx -m "$body"
四、爲用戶指定媒介
五、建立報警動做
六、建立個觸發器測試下郵件報警功能
七、去事件中查看實驗結果
郵件報警成功!!!
zabbix經過sendEmail報警配置過程完成!