nagios客户端nrpe的安装

安装nrpe的过程:
 
  
  
  
  
  1. 安装nrpe客户端: 
  2. [root@svr1 ~]# useradd nagios 
  3.  
  4. [root@svr1 ~]# tar -xzf nagios-plugins-1.4.15.tar.gz  
  5. [root@svr1 ~]# cd nagios-plugins-1.4.15 
  6. [root@svr1 nagios-plugins-1.4.15]# ./configure  
  7. [root@svr1 nagios-plugins-1.4.15]# make && make install  
  8.  
  9. [root@svr1 ~]# tar -xzf nrpe-2.12.tar.gz  
  10. [root@svr1 ~]# cd nrpe-2.12 
  11. [root@svr1 nrpe-2.12]# ./configure 
  12. *** Configuration summary for nrpe 2.12 03-10-2008 ***: 
  13.  
  14.  General Options: 
  15.  ------------------------- 
  16.  NRPE port:    5666 
  17.  NRPE user:    nagios 
  18.  NRPE group:   nagios 
  19.  Nagios user:  nagios 
  20.  Nagios group: nagios 
  21.  
  22. [root@svr1 nrpe-2.12]# make all && make install-plugin 
  23. cd ./src/ && make install-plugin 
  24. make[1]: Entering directory `/root/nrpe-2.12/src' 
  25. /usr/bin/install -c -m 775 -o nagios -g nagios -d /usr/local/nagios/libexec 
  26. /usr/bin/install -c -m 775 -o nagios -g nagios check_nrpe /usr/local/nagios/libexec 
  27. make[1]: Leaving directory `/root/nrpe-2.12/src' 
  28. [root@svr1 nrpe-2.12]# make install-daemon 
  29. cd ./src/ && make install-daemon 
  30. make[1]: Entering directory `/root/nrpe-2.12/src' 
  31. /usr/bin/install -c -m 775 -o nagios -g nagios -d /usr/local/nagios/bin 
  32. /usr/bin/install -c -m 775 -o nagios -g nagios nrpe /usr/local/nagios/bin 
  33. make[1]: Leaving directory `/root/nrpe-2.12/src' 
  34. [root@svr1 nrpe-2.12]# make install-daemon-config 
  35. /usr/bin/install -c -m 775 -o nagios -g nagios -d /usr/local/nagios/etc 
  36. /usr/bin/install -c -m 644 -o nagios -g nagios sample-config/nrpe.cfg /usr/local/nagios/etc 
  37. [root@svr1 nrpe-2.12]# make install-xinetd 
  38. /usr/bin/install -c -m 644 sample-config/nrpe.xinetd /etc/xinetd.d/nrpe  
  39.  
  40. [root@svr1 nrpe-2.12]# vim /etc/xinetd.d/nrpe  
  41. # default: on 
  42. # description: NRPE (Nagios Remote Plugin Executor) 
  43. service nrpe 
  44.         flags           = REUSE 
  45.         socket_type     = stream 
  46.         port            = 5666 
  47.         wait            = no 
  48.         user            = nagios 
  49.         group           = nagios 
  50.         server          = /usr/local/nagios/bin/nrpe 
  51.         server_args     = -c /usr/local/nagios/etc/nrpe.cfg --inetd 
  52.         log_on_failure  += USERID 
  53.         disable         = no 
  54.         only_from       = 10.1.1.40 
  55.  
  56. [root@svr1 nrpe-2.12]# service xinetd restart 
  57. Stopping xinetd: [  OK  ] 
  58. Starting xinetd: [  OK  ] 
  59. [root@svr1 nrpe-2.12]# chkconfig --list | grep nrpe 
  60.         nrpe:           on 
  61. [root@svr1 nrpe-2.12]# netstat -tnlp | grep nrpe 
  62. tcp        0      0 0.0.0.0:5666                0.0.0.0:*                   LISTEN      25360/nrpe   
  63.  
  64.  
  65. [root@svr1 nrpe-2.12]# vim /usr/local/nagios/etc/nrpe.cfg   
  66. 修一行: 
  67. allowed_hosts=127.0.0.1,10.1.1.40 
  68.  
  69. 本机测试! 
  70. [root@svr1 nrpe-2.12]# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d 
  71. [root@svr1 nrpe-2.12]# /usr/local/nagios/libexec/check_nrpe -H localhost -c check_load 
  72. OK - load average: 0.00, 0.00, 0.00|load1=0.000;15.000;30.000;0; load5=0.000;10.000;25.000;0;  
  73.  
  74. load15=0.000;5.000;20.000;0;  
  75.  
  76. 备注:有时候在客户端本机上测试时,发现会报错。CHECK_NRPE: Error - Could not complete SSL handshake. 
  77. 这个时候,注意下xinetd.d/nrpe 以及nrpe.conf 里关于allowed相关的选项,另外就是防火墙。 
  78. 使用xinetd后发现重启xinetd并不能重启nrpe,只有将其 T掉然后再开。 
  79.  
  80. 从远程主机上测试下: 
  81. [root@svr4 ~]# /usr/local/nagios/libexec/check_nrpe -H 10.1.1.10 -c check_total_procs 
  82. PROCS CRITICAL: 249 processes 
  83.  
  84. 监控一下客户机的81,82服务吧!详见下篇 

本文出自 “潜入技术的海洋” 博客,请务必保留此出处http://myhat.blog.51cto.com/391263/653363

你可能感兴趣的:(Install,职场,nagios,休闲,nagios-plugin)