`

nagios使用

阅读更多
nagios中文:http://nagios-cn.sourceforge.net/
nagiso官方网站:http://www.nagios.org/

Ununtu下Nagios信息发送方式:
1.mail
如果要接收Nagios的EMail警报,需要安装(Postfix)包

sudo apt-get install mailx

需要编辑Nagios里的EMail通知送出命令,它位于/usr/local/nagios/etc/commands.cfg文件中,将里面的'/bin/mail'全部替换为'/usr/bin/mail'。一旦设置好需要重启动Nagios以使配置生效。

sudo /etc/init.d/nagios restart

2.MSN
  用php来发送MSN信息。
  wget http://downloads.fanatic.net.nz/dev/php/sendMsg.zip
  unzip sendMsg.zip
  mv sendMsg /path/to/web/dir/msn
  可以先打开 http://server/msn/index.php 测试一下能否发送。如果没有问题,可以写一个脚本来执行 MSN 信息发送命令:
  /usr/local/nagios/libexec/msn_send.sh:
  #!/bin/sh
  wget -O - -q --post-data="sender=nagios@live.cn&password=password& 
  recipient=$1&message=$2" http://server/msn/index.php > /dev/null

  chmod +x /usr/local/nagios/libexec/msn_send.sh

/usr/local/nagios/etc/objects/commands.cfg:

define command{
        command_name    notify-host-by-msn
        command_line    /usr/local/nagios/libexec/msn_send.sh $CONTACTEMAIL$ "`/usr/bin/printf "%b" "***** Monitor *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n"`"
        }

define command{
        command_name    notify-service-by-msn
        command_line    /usr/local/nagios/libexec/msn_send.sh $CONTACTEMAIL$ "`/usr/bin/printf "%b" "***** Monitor *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$"`"
        }

/usr/local/nagios/etcobjects/contacts.cfg :

define contact{
        contact_name                    nagios
        alias                           Nagios Msn
        use                             generic-contact
        service_notification_period     24x7
        host_notification_period        24x7
        service_notification_options    w,u,c,r
        host_notification_options       d,u,r
        service_notification_commands   notify-service-by-msn
        host_notification_commands      notify-host-by-msn
}

参考于:http://blog.bluedata.org/nagios-notification-type/
3.飞信通知

飞信官方网站:http://www.it-adv.net/
  下载:fetion20080910048-linux.tar.gz 和 library32.rar(版本不断更新)
  tar xvfz fetion_linux_20080402.tar.gz
  cd install
  sudo cp fetion /usr/bin
  fetion -h
如果出现如下错误:
  error while loading shared libraries: libACE.so.5.4.7: cannot open shared object file: No such file or directory
  说明缺少运行的库文件。
解决方法:
   a.sudo apt-get install libACE.so.5.4.7 libACE_SSL.so.5.4.7
     (可能你的ubuntu已经不提供安装这两个库文件,采用下面的方案)
   b.unrar e library32.rar
     cd library32
     sudo cp *.* /lib/
     sudo cp *.* /usr/lib/
  重新执行 fetion -h.应该能看到所要的结果。
  如果你有飞信号,可以执行一下。
  fetion  -u 飞信号 -p pwd 来登录。
/usr/local/nagios/etc/objects/commands.cfg:
# 'notify-service-by-fetion' command definition                                                                            
define command{
        command_name notify-service-by-fetion
        command_line /usr/bin/feiton -u 13888888888  -p 123456   -t $CONTACTPAGER$ -m "$HOSTNAME$ $SERVICEDESC$ is $SERVICESTATE$ on $TIME$ result is $SERVICEOUTPUT$" $CONTACTPAGER$
        }
/usr/local/nagios/etcobjects/contacts.cfg :
define contact{
contact_name                    fetion
alias                           nagios admin
host_notification_period        24x7
service_notification_period     24x7
host_notification_options       d,r,
service_notification_options    c,w,r
service_notification_commands   notify-service-by-email,notify-service-by-fetion
#       service_notification_commands   notify-service-by-email                                                            
host_notification_commands      notify-host-by-email
pager                           158010775111
}


最后将定义的contact添加到contactgroup中:
define contactgroup{
        contactgroup_name       admins
        alias                   Nagios Administrators
        members                 nagiosadmin,nagios,fetion
}
当你定义一个主机的时候:
/usr/local/nagios/etc/objects/templates:
# Linux host definition template - This is NOT a real host, just a template!                                               

define host{
        name                            linux-server    ; The name of this host template
        use                             generic-host    ; This template inherits other values from the generic-host template
check_period                    24x7            ; By default, Linux hosts are checked round the clock
check_interval                  5               ; Actively check the host every 5 minutes
retry_interval                  1               ; Schedule host check retries at 1 minute intervals
        max_check_attempts              10              ; Check each Linux host 10 times (max)
        check_command                   check-host-alive ; Default command to check Linux hosts
        notification_period             workhours       ; Linux admins hate to be woken up, so we only notify during the day
                                                        ; Note that the notification_period variable is being overridden from
                                                        ; the value that is inherited from the generic-host template!
notification_interval           120             ; Resend notifications every 2 hours
        notification_options            d,u,r           ; Only send notifications for specific host states
contact_groups                  admins          ;使用的联系组为admins
        register                        0               ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE!
        }

  此处参考:http://yang2001.blog.51cto.com/25307/73164
分享到:
评论

相关推荐

    Nagios使用手册.pdf

    Nagios 使用手册 Nagios 是一种开源的计算机系统和网络监控工具,可以监控 Windows、Linux、Unix 等操作系统,提供实时的系统状态信息,帮助管理员快速地检测和解决问题。本文档将详细介绍 Nagios 的使用手册,包括...

    nagios使用教程.pdf

    标题中的"Nagios使用教程"表明本文档是关于如何安装、配置和使用Nagios这个开源的系统和服务监测工具。Nagios能够监控网络和系统资源,包括服务器、网络、交换机、应用和网络服务等。它能够远程监测服务的状态,以及...

    Nagios使用SendEmail发送邮件

    本文将介绍如何使用SendEmail这个轻量级的工具代替sendmail在Nagios中发送报警邮件。 首先,让我们了解一下SendEmail。SendEmail是一个小巧的命令行工具,适用于Linux和Unix系统,能够方便地通过SMTP协议发送邮件。...

    Nagios使用手册

    Nagios使用手册,包含了整个Nagios安装过程以及部门常规的配置。

    nagios的基本使用

    ### Nagios基本使用详解 #### 一、Nagios简介 Nagios是一款非常流行的开源系统及网络监控工具,能够高效地监控Windows、Linux以及Unix等操作系统主机的状态,同时还支持路由器、交换机乃至打印机等设备的监控。...

    Nagios3.x_中文手册完整版

    5. **启动Nagios:** 使用命令`/usr/local/nagios/bin/nagios /usr/local/nagios/etc/nagios.cfg`启动服务。 **3.3 基于不同平台的快速指南** - **Fedora/Linux发行版:** - 安装依赖:`sudo dnf install httpd ...

    nagios-snmp-plugins-1.2.tar.gz

    同时,为了使用这两个插件,你的Nagios服务器需要配置SNMP服务,并且目标设备也要开启SNMP服务,允许Nagios服务器进行查询。 在实际应用中,Nagios SNMP Plugins不仅限于基本的监控,还可以结合脚本和第三方工具,...

    CentOS 7.4 Nagios安装包.zip

    Nagios Core是免费的开源监控工具或软件,可以监控服务器,网络设备(如防火墙,网络交换机和打印机等)等资源.Nagios核心还提供警报服务,nagios使用该服务向管理员通知已发生的问题然后触发问题解决后再次发出警报...

    nagios 安装使用

    **二、Nagios使用** 1. **配置监控**:Nagios的监控配置主要在`/etc/nagios/nagios.cfg`和`/etc/nagios/conf.d/`目录下。配置文件中定义了要监控的主机、服务和检查周期。 2. **添加主机和服务**:在`/etc/nagios/...

    pnp4nagios-0.6.25

    PNP4Nagios使用RRDtool来存储Nagios收集到的监控数据,并生成趋势图。RRDtool-perl模块是RRDtool的Perl接口,使得在Perl脚本中调用和操作RRD数据库变得更加方便。 在安装PNP4Nagios之前,确保系统中已经安装了...

    nagios安装必备文件

    - **安装Web界面**:Nagios使用CGI脚本来提供Web接口,将Nagios提供的CGI目录链接到Web服务器的适当位置。 - **启动Nagios服务**:使用 `systemctl start nagios` 或 `service nagios start` 启动Nagios服务。 5....

    nagios监控部署+邮箱报警

    2. Nagios-plugins-1.4.16:包含了多种Nagios使用的监控插件。 3. NRPE-2.14:允许Nagios服务器远程执行Linux主机上的插件,实现远程监控。 安装过程如下: 1. 安装依赖包:使用`yum -y install gd gd-devel ...

    nagios安装软件+安装配置手册

    - Nagios使用插件检查服务状态,如网络连接、磁盘空间等。安装常用插件包:`sudo apt-get install nagios-plugins` 或 `yum install nagios-plugins-all`。 - 配置Nagios以使用这些插件,修改`/etc/nagios3/conf.d...

    nagios安装与配置

    4. **配置插件**:Nagios使用插件进行实际的监控工作,如`check_ping`检查网络可达性,`check_disk`监控磁盘空间等。确保这些插件已安装并在PATH路径中。 三、Nagios Web界面 1. **CGI配置**:配置Nagios的Web界面...

    nagios-3.4.3

    安装nagiosQL需要创建数据库、导入初始数据,并配置Nagios使用nagiosQL作为其配置源。 在实际操作中,为了实现中文环境,你需要找到支持中文的语言包并将其安装到Nagios中。同时,可能还需要对Web界面进行一些本地...

    cacati与nagios两者的对比

    Cacti 和 Nagios 是两种广泛使用的网络监控工具,它们各自具有独特的特性和适用场景。在选择合适的监控系统时,了解它们的区别至关重要。 Cacti 是一个基于 RRDTool 的网络监控系统,专长在于数据收集和可视化。它...

    nagios-4.3.4.tar.gz

    5. **初始化数据库**:Nagios使用CGI脚本来处理Web请求,需要设置权限并初始化CGI脚本,例如`sudo chown -R www-data /usr/local/nagios/html/cgi-bin/`。 6. **配置Nagios服务**:编辑`/etc/nagios/nagios.cfg`配置...

    Nagios 3.x中文手册

    8. **插件(Plugins)**:Nagios使用插件来执行各种检查。这些插件是可扩展的,用户可以根据需求编写自己的插件。 9. **性能数据(Performance Data)**:Nagios可以收集和存储服务的性能数据,用于性能分析和趋势...

    nagios-2.6.tar.gz 服务监控软件

    4. **权限设置**:Nagios使用非特权用户运行,需要正确设置文件权限和所有权。 5. **启动Nagios服务**:启动Nagios守护进程,并设置为开机启动。 6. **测试和验证**:使用`nagios -v /etc/nagios/nagios.cfg`命令...

    Nagios网络监控.docx

    使用 Nagios 监控 mysql 服务器的性能和状态,包括 CPU 使用率、内存使用率、磁盘使用率等。 知识点: * Nagios 是一款开源的免费网络监控软件。 * Nagios 可以实时监控服务器的性能和状态。 * Nagios 的安装需要...

Global site tag (gtag.js) - Google Analytics