zoukankan      html  css  js  c++  java
  • zabbix配置邮件告警

     配置发邮件
    yum install -y sendmail ; 
    mkdir -p /home/zabbix/bin
    vim /home/zabbix/bin/baojing.sh //内容:
    #! /bin/bash
    echo "$3" |/bin/mail -s "$2" $1
    chmod +x /home/zabbix/bin/baojing.sh 

    在zabbix_server.conf配置文件中,有参数AlertScriptsPath和ExternalScripts
    AlertScriptsPath=/home/zabbix/bin/ ---用户自定义的media types脚本
    ExternalScripts=/home/zabbix/bin/ ---用户自定义的检查的脚本(item)
    这样才能找到你的脚本,因为你在frontend中只是输入脚本的名称,没有路径。

    创建mediea types: “Administration" -->”Media types",点击右上角“Create Media Type"其中Description填"baojing” 或其它自定义名称,Type选择"Script",Script填”baojing.sh”然后点”Save”.  
    创建user: “Adimistration” --> “Users”在右上角,选择”Users”,点击”Create User”, alias: test1,自定义name和lastname password:123456;group 选择guest,回到上面点一下media,type 选择baojing,send to 写要发送邮件的邮箱,点add, 最后点save
    创建action: “configuration” --> actions,右上角“Create Actions”, Name自定义,我这里写”baojing”,其他默认,然后点右侧的“Operations”下的“New”按钮,“Operation Type”选择“Send message”,“Send Message to”选择一个或多个要发送消息的用户组,Send to Users选择我们之前新增的test1, “Send only to”选择baojing , 点一下add
    最后点save

  • 相关阅读:
    Nginx的配置文件详解(超详细)
    淘宝地址爬取及UI展示
    点击观看
    winform picturebox设置布局样式
    vs的一个不经常用的快捷键
    C# 开发windows服务
    winform窗体置顶
    C# mysql set和enum属性字段的读取和添加
    winform窗体绑定监控键盘事件
    html5创建的sqlite存放为止以及在手机中的位置
  • 原文地址:https://www.cnblogs.com/pxmlinux/p/5512566.html
Copyright © 2011-2022 走看看