Nagios 监控Linux服务器

一、nagios监控linux基本流程
 
1.nagios 运行check_nrpe插件,检查配置文件需要检测的对象
 
2.check_nrpe插件会通过SSL连接到远程的NRPE daemon
 
3.NRPE daemon会运行相应的nagios插件来执行检查本地资源或服务
 
4.NRPE daemon将检查的结果返回给check_nrpe插件,插件将其提交给nagios做处理
 

二、linux nagios客户端安装
 
1.软件装备
 
wget
 
wget
 
2.nagios-plugins 安装
 
nagios-plugin 其实就是一个nagios 的插件库,各种插件的功能可以看帮助详细了解
 
[root@localhost ~]# useradd nagios    #创建nagios用户
 
[root@localhost ~]# cd /home/nagios/
 
[root@localhost nagios]# tar zxvf nagios-plugins-1.4.16.tar.gz
 
[root@localhost nagios]# cd nagios-plugins-1.4.16
 
[root@localhost nagios-plugins-1.4.16]# ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios
 
[root@localhost nagios-plugins-1.4.16]# make && make install
 
3.NRPE 安装
 
#服务端也要安装NRPE插件,然后在command.cfg定义下check_nrpe 就可以了,其它的不需要配置
 
[root@localhost nagios]# tar zxvf nrpe-2.13.tar.gz
 
[root@localhost nagios]# cd nrpe-2.13
 
[root@localhost nrpe-2.13]# ./configure --prefix=/usr/local/nagios/
 
[root@localhost nrpe-2.13]# make all
 
[root@localhost nrpe-2.13]# make install-plugin  #安装NRPE插件
 
[root@localhost nrpe-2.13]# make install-daemon  #安装nrpe-daemon
 
[root@localhost nrpe-2.13]# make install-daemon-config  #安装daemon配置文件
 
[root@localhost nrpe-2.13]# make install-xinetd  #安装NRPE Deamon为xinetd下的一个服务

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/08147f76463a398db2e1ee256de485cc.html