共计 2244 个字符,预计需要花费 6 分钟才能阅读完成。
1.Nrpe 安装
创建 nagios 用户
useradd nagios
1.1 被监控服务器安装 nagios 插件
tar xzvfnagios-plugins-1.4.15.tar.gz
cd nagios-plugins-1.4.15
./configure
make
make install
1.2 被监控服务器安装 nrpe 程序
tar xzvf nrpe-2.1.2.tar.gz
cd nrpe-2.1.2
./configure –prefix=/usr/local/nagios
make all
make install-plugin
make install-daemon
make install-daemon-config
检查插件安装
ll /usr/local/nagios/libexec/
1.3 修改 nrpe 配置文件,加入允许的 IP
#vi/usr/local/nagios/etc/nrpe.cfg
allowed_hosts=127.0.0.1,192.169.0.201
启动 nrpe
#/usr/local/nagios/bin/nrpe -c/usr/local/nagios/etc/nrpe.cfg –d
# netstat -plnt |grep nrpe
tcp 0 0 0.0.0.0:5666 0.0.0.0:* LISTEN 16831/nrpe
1.4 加入开机自启动
echo’/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d’>>/etc/rc.local
1.5 在主 Nagios 上验证客户端 nrpe 是否安装好
[root@nagios-server src]#/usr/local/nagios/libexec/check_nrpe -H 192.168.1.100
NRPE v2.12
若出现版本号,代表 nrpe 客户端安装成功。
2 主 Nagios 调用 nrpe 配置
2.1 编辑客户端上的 nrpe 配置文件
#vi /usr/local/nagios/etc/nrpe.cfg
command[check_users]=/usr/local/nagios/libexec/check_users-w 5 -c 10
command[check_load]=/usr/local/nagios/libexec/check_load-w 15,10,5 -c 30,25,20
2.2 在主 Nagios 上定义客户端主机
#vi /usr/local/nagios/etc/objects/hosts.cfg
define host{
use linux-server,host-pnp
host_name hostb
alias hostb
address 192.168.1.100
}
2.3 在主 Nagios 上配置服务
#vi /usr/local/nagios/etc/objects/services.cfg
define service{
use generic-service,srv-pnp
host_name hostb
service_description check_users
check_command check_nrpe!check_users
max_check_attempts 5
normal_check_interval 1
}
define service{
use generic-service,srv-pnp
host_name hostb
service_description check_load
check_command check_nrpe!check_load
max_check_attempts 5
normal_check_interval 1
}
2.4 重启主 Nagios 服务
#/etc/init.d/nagios checkconfig
#/etc/init.d/nagios restart
2.5 Nagios 界面临控效果图
网络监控器 Nagios 全攻略 http://www.linuxidc.com/Linux/2013-07/87067.htm
Nagios 搭建与配置详解 http://www.linuxidc.com/Linux/2013-05/84848.htm
Nginx 环境下构建 Nagios 监控平台 http://www.linuxidc.com/Linux/2011-07/38112.htm
在 RHEL5.3 上配置基本的 Nagios 系统 (使用 Nagios-3.1.2) http://www.linuxidc.com/Linux/2011-07/38129.htm
CentOS 5.5+Nginx+Nagios 监控端和被控端安装配置指南 http://www.linuxidc.com/Linux/2011-09/44018.htm
Ubuntu 13.10 Server 安装 Nagios Core 网络监控运用 http://www.linuxidc.com/Linux/2013-11/93047.htm
Nagios 的详细介绍 :请点这里
Nagios 的下载地址 :请点这里