码迷,mamicode.com
首页 > 移动开发 > 详细

nagios nrpe

时间:2014-09-04 12:00:59      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:des   http   os   io   ar   for   文件   art   sp   


layout: post

title: “nagios/nrpe”

nrpe

NRPE 可以理解为nagios 的 client for linux
源码下载: http://sourceforge.net/projects/nagios/files/nrpe-2.x/

编译安装

wget http://cznic.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.15/nrpe-2.15.tar.gz
tar -xvpf nrpe-2.15.tar.gz
cd nrpe-2.15
./configure --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu/
make all
make install-plugin
make install-daemon
make install-daemon-config
make install-xinetd    nrpe安装为xinetd服务(xinetd运行方式需要的安装步骤,独立进程不需要)

NRPE软件包

主要包含两个实用程序

  • check_nrpe 用于监控端,远程执行被监控端的nagios插件,将结果给返给nagios
  • nrpe 用于被监控端,建立demon,等待响应监控端的监控请求

被监控端配置(以 ubuntu 14.04.1 为例)

安装软件包:

apt-get install nagios-nrpe-server -y

基本配置:修改配置文件/etc/nagios/nrpe.cfg

allowed_hosts=IP # 更改为监控端的IP

重启服务:

service nagios-nrpe-server restart

监控端配置(以 ubuntu 14.04.1 为例)

安装软件包:

apt-get install nagios-nrpe-plugin -y

查看与被监控端的通讯是否正常

#/usr/local/nagios/libexec/check_nrpe -H localhost
NRPE v2.12

如果返回是NRPE v2.12 版本信息,说明监控与被监控端配置正确,如果不是请返回排错!

添加监控项

添加配置: 引用 /etc/nagios-plugins/config/check_nrpe.cfg 中的定义的command

define service {
        use                             generic-service
        hostgroup_name                  all
        service_description             NRPE check_hda1
        check_command                   check_nrpe_1arg!check_hda1
        notification_interval           0 
}

define service {
        use                             generic-service
        hostgroup_name                  all
        service_description             NRPE check_total_procs
        check_command                   check_nrpe_1arg!check_total_procs
        notification_interval           0 
}

特别说明是check_nrpe 命令参数中 command 是指 被监控端配置文件 /etc/nagios/nrpe.cfg 中定义的
如下:

command[check_users]=/usr/lib/nagios/plugins/check_users -w 5 -c 10
command[check_load]=/usr/lib/nagios/plugins/check_load -w 15,10,5 -c 30,25,20
command[check_hda1]=/usr/lib/nagios/plugins/check_disk -w 20% -c 10% -p /dev/sda1
command[check_zombie_procs]=/usr/lib/nagios/plugins/check_procs -w 5 -c 10 -s Z
command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 150 -c 200
command[nrpe_check_ping]=/usr/lib/nagios/plugins/check_ping -w $ARG1$ -c $ARG2$ -p $ARG3$

重启服务:

service nagios3 restart

至此NRPE远端执行的插件配置就完成了,如果有需要增加监控项,需修改nagios配置文件和被监控端配置文件。

nagios nrpe

标签:des   http   os   io   ar   for   文件   art   sp   

原文地址:http://my.oschina.net/u/877567/blog/309973

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!