Nagios搭建完整记录--田逸老师nagios笔记补充完整版

 

        首先要感谢田逸老师,他的《互联网运营智慧》果真是一本不可多得的好书。田逸老师的blog地址是: http://sery.blog.51cto.com/,真心感谢田逸老师给我们带来这本非常好的书。
        本文中,完全是田逸老师实验步骤来实践的。不过也有自己的一些小的变动。不过不大。版权应该完全归田逸老师所有,我只是整理罢了。只是在想可能还有一些像我一样的菜鸟在看田逸老师的书的时候感觉配置有点小费劲,呵呵,大家应该可以参考我的实验步骤来操作。应该可以顺利的搭建出来。
        一直以来希望总结一套完整的nagios安装配置文档,却总也没有动手,看了田逸老师的《互联网运营智慧》一书中关于nagios搭建的介绍,照着老师的配置,却总有一点点弄不好,搭建好了以后,nagios服务器总也监控不了远程客户端的nrpe,在服务端测试过去也是弄不过去,在文章最后在写走过的弯路,已经把产生这种问题的原因找到了,在下边的文档配置中将解决这个问题。这里先好好的把所有步骤总结下,这里也只是写了一台服务器的监控,并没有涉及到更多的服务器,在后续总结中会陆续添加上。
 
搭建顺利几要素:
1、一定要保证apache添加了php支持
2、一定要保证客户机上有相应的check_脚本
3、一定要保证nrpe.cfg中关于command的记录是正常的。
4、一定要保证主机usr/local/nagios/etc/objects/hosts.cfg和/etc/hosts里面有关于services.cfg中的host_name项的记录,否则check_nrpe绝对不通
 
nagios服务器需要的包:
httpd-2.2.15.tar.gz
php-5.2.17.tar.gz
nagios-3.2.3.tar.gz
nagios-plugins-1.4.15.tar.gz
 
被监听服务器需要的包
nrpe-2.12.tar.gz
nagios-plugins-1.4.15.tar.gz
 
nagios安装环境介绍:
源码安装了apache服务。路径:/usr/local/apache
正确添加了php支持。
 
1、添加nagios用户,可以不使其自动登录。
useradd nagios
 
2、改造apache服务主配置文件/usr/local/apache/conf/httpd.conf,为其添加nagios虚拟目录:
 
  
  
  
  
  1. ScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin  
  2. <Directory "/usr/local/nagios/sbin">  
  3.         AuthType Basic  
  4.         Options ExecCGI  
  5.         AllowOverride None  
  6.        Order allow,deny  
  7.         Allow from all 
  8.         AuthName "Nagios Access" 
  9.         AuthUserFile /usr/local/nagios/etc/htpasswd  
  10.         Require valid-user 
  11. </Directory>  
  12. Alias /nagios /usr/local/nagios/share  
  13. <Directory "/usr/local/nagios/share">  
  14.         AuthType Basic  
  15.         Options None  
  16.         AllowOverride None  
  17.         Order allow,deny  
  18.         Allow from all 
  19.         AuthName "Nagios Access" 
  20.         AuthUserFile /usr/local/nagios/etc/htpasswd  
  21.         Require valid-user 
  22. </Directory>  
3、创建密码文件/usr/local/nagios/etc/htpasswd
[root@nagios-server ~]# /usr/local/apache/bin/htpasswd -c /usr/local/nagios/etc/htpasswd nagios
 
4、安装nagios程序包,我这里使用的是到2011年3月9日最新版,nagios-3.2.3
tar zxvf nagios-3.2.3.tar.gz –C /usr/local/
cd /usr/local/nagios-3.2.3/
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios
make all
make install
make install-commandmode
make install-config
 
5、安装nagios-plugins插件,这里安装的是nagios-plugins-1.4.15
tar zxvf nagios-plugins-1.4.15.tar.gz -C /usr/local/
cd /usr/local/nagios-plugins-1.4.15/
./configure --prefix=/usr/local/nagios --enable-readhat-pthread-workaround
make
make install
 
6、nagios的配置
 
(1)、修改主配置文件/usr/local/nagios/etc/nagios.cfg
 
  
  
  
  
  1. #将localhost.cfg注释掉,而改用多文件配置,使得配置文件更加清晰明了。  
  2. #cfg_file=/usr/local/nagios/etc/objects/localhost.cfg  
  3.  
  4. #主机配置文件路径  
  5. cfg_file=/usr/local/nagios/etc/objects/hosts.cfg  
  6.  
  7. #主机组配置文件路径  
  8. cfg_file=/usr/local/nagios/etc/objects/hostgroups.cfg  
  9.  
  10. #联系人配置文件路径  
  11. cfg_file=/usr/local/nagios/etc/objects/contacts.cfg  
  12.  
  13. #联系组配置文件路径  
  14. cfg_file=/usr/local/nagios/etc/objects/contactgroups.cfg  
  15.  
  16. #监控服务配置文件路径  
  17. cfg_file=/usr/local/nagios/etc/objects/services.cfg  
  18.  
  19. #监视时段配置文件路径  
  20. cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg  
  21.  
  22. #在Web界面下重启Nagios、停止主机/服务检查等操作,默认值为0  
  23. check_external_commands=1 
  24.  
  25. #根据自己的情况定义这个命令检查时间间隔,默认值为1秒  
  26. command-check_interval=10s 
 
(2)、修改/usr/local/nagios/etc/cgi.cfg,这里写出被修改的部分
 
  
  
  
  
  1. authorized_for_system_information=nagios  
  2. authorized_for_configuration_information=nagios  
  3. authorized_for_system_commands=nagios  
  4. authorized_for_all_services=nagios  
  5. authorized_for_all_hosts=nagios  
  6. authorized_for_all_service_commands=nagios  
  7. authorized_for_all_host_commands=nagios 
(3)、修改/usr/local/nagios/etc/objects/commands.cfg,添加对check_nrpe命令的定义,同时,在commands.cfg中还可以添加手机发送短信功能。因为这里并没有实现所以并没有写。具体实现请参照田逸老师的《互联网运营智慧》一书。
 
  
  
  
  
  1. 'check-nrpe' command definition  
  2. define command{  
  3.         command_name    check_nrpe  
  4.         command_line    $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$  
  5.         } 
(4)、修改/usr/local/nagios/etc/objects/hosts.cfg主机配置文件
备注:注意host_name的指向,这里的server名称必须在/etc/hosts中定义,否则不会找到该客户机。
 
  
  
  
  
  1. define host {  
  2.         host_name nagios-server  
  3.         alias nagios server  
  4.         address 192.168.2.4  
  5.         contact_groups sagroup  
  6.         check_command check-host-alive  
  7.         max_check_attempts 5  
  8.         notification_interval 10  
  9.         notification_period 24x7  
  10.         notification_options d,u,r  
  11.         } 
(5)、修改/usr/local/nagios/etc/objects/hostgroups.cfg主机组配置文件
 
  
  
  
  
  1. define hostgroup {  
  2.         hostgroup_name sa-servers  
  3.         alias sa servers  
  4.         members nagios-server  
  5.         } 
(6)、修改/usr/local/nagios/etc/objects/contacts.cfg联系人配置文件
 
  
  
  
  
  1. define contact {  
  2.         contact_name nagios  
  3.         alias nagios administrator  
  4.         service_notification_period 24x7  
  5.         host_notification_period 24x7  
  6.         service_notification_options w,u,c,r  
  7.         host_notification_options d,u,r  
  8.         service_notification_commands notify-service-by-email  
  9.         host_notification_commands notify-host-by-email  
  10.         email [email protected]  
  11.         } 
(7)、修改/usr/local/nagios/etc/objects/contactgroups.cfg联系人配置文件
备注:这里还可以添加更多的分组。用来建立不同级别的警报机制,比如主机不可达,主机宕机,主机恢复等各种级别的报警分别发给不同的用户。
 
  
  
  
  
  1. define contactgroup {  
  2.         contactgroup_name sagroup  
  3.         alias system administrator group 
  4.         members nagios  
  5.         } 
(8)、修改/usr/local/nagios/etc/objects/services.cfg监控服务配置文件(重要)
备注:这里的hots_name必须为hosts.cfg中定义过的,否则check_nrpe将不能检测该服务。
 
  
  
  
  
  1. define service {  
  2.         host_name nagios-server  
  3.         service_description check-host-alive  
  4.         check_period 24x7  
  5.         max_check_attempts 4  
  6.         normal_check_interval 3  
  7.         retry_check_interval 2  
  8.         contact_groups sagroup  
  9.         notification_interval 10  
  10.         notification_period 24x7  
  11.         notification_options w,u,c,r  
  12.         check_command check-host-alive  
  13.         }  
  14. define service {  
  15.         host_name nagios-server  
  16.         service_description check_tcp 80  
  17.         check_period 24x7  
  18.         max_check_attempts 4  
  19.         normal_check_interval 3  
  20.         retry_check_interval 2  
  21.         contact_groups sagroup  
  22.         notification_interval 10  
  23.         notification_period 24x7  
  24.         notification_options w,u,c,r  
  25.         check_command check_tcp!80  
  26.         }  
  27. define service {  
  28.         host_name nagios-server  
  29.         service_description check-disk  
  30.         check_period 24x7  
  31.         max_check_attempts 4  
  32.         normal_check_interval 3  
  33.         retry_check_interval 2  
  34.         contact_groups sagroup  
  35.         notification_interval 10  
  36.         notification_period 24x7  
  37.         notification_options w,u,c,r  
  38.         check_command check_nrpe!check_df  
  39.         }  
  40. define service {  
  41.         host_name nagios-server  
  42.         service_description check-load 
  43.         check_period 24x7  
  44.         max_check_attempts 4  
  45.         normal_check_interval 3  
  46.         retry_check_interval 2  
  47.         contact_groups sagroup  
  48.         notification_interval 10  
  49.         notification_period 24x7  
  50.         notification_options w,u,c,r  
  51.         check_command check_nrpe!check_load  
  52.         }  
  53. define service {  
  54.         host_name nagios-server  
  55.         service_description total_procs  
  56.         check_period 24x7  
  57.         max_check_attempts 4  
  58.         normal_check_interval 3  
  59.         retry_check_interval 2  
  60.         contact_groups sagroup  
  61.         notification_interval 10  
  62.         notification_period 24x7  
  63.         notification_options w,u,c,r  
  64.         check_command check_nrpe!check_total_procs  
  65.         } 
7、在nagios监控服务器及客户端上部署nrpe,并在被监控客户端上部署nagios-plugings
tar zxvf nrpe-2.12.tar.gz -C /usr/local/
cd /usr/local/nrpe-2.12/
./configure --prefix=/usr/local/nrpe
make
make install
 
在nagios主机上:
cp /usr/local/nrpe/libexec/check_nrpe /usr/local/nagios/libexec/

在客户端上:
tar zxvf nagios-plugins-1.4.15.tar.gz -C /usr/local/
cd /usr/local/nagios-plugins-1.4.15/
./configure --prefix=/usr/local/nrpe --enable-readhat-pthread-workaround
make
make install
 
8、nrpe的配置
 
(1)、 mkdir /usr/local/nrpe/etc
(2)、 cp /usr/local/nrpe-2.12/sample-config/nrpe.cfg /usr/local/nrpe/etc
(3)、修改配置文件/usr/local/nrpe/etc/nrpe.cfg,这里列出我的配置文件:
 
  
  
  
  
  1. log_facility=daemon  
  2. pid_file=/var/run/nrpe.pid  
  3. server_address=192.168.2.4  
  4. server_port=5666  
  5. nrpe_user=nagios  
  6. nrpe_group=nagios  
  7. allowed_hosts=127.0.0.1,192.168.2.4  
  8. dont_blame_nrpe=0  
  9. debug=0  
  10. command_timeout=60  
  11. connection_timeout=300  
  12. command[check_load]=/usr/local/nrpe/libexec/check_load -w 15,10,5 -c 30,25,20  
  13. command[check_df]=/usr/local/nrpe/libexec/check_disk -w 20% -c 10%  
  14. command[check_zombie_procs]=/usr/local/nrpe/libexec/check_procs -w 5 -c 10 -s Z  
  15. command[check_total_procs]=/usr/local/nrpe/libexec/check_procs -w 150 -c 200  
  16. command[check_ips]=/usr/local/nrpe/libexec/ip_conn.sh 8000 10000  
  17. #allowed_hosts指允许监控你的nagios服务器地址。因为是客户机,这里必须要填上nagios监控主机的ip,也可以填上127.0.0.1,用逗号分隔。  
  18. #这里command[*]里定义的项目,就是在主机的check_nrpe中添加的定义字符串,请看services.cfg中的“check_nrpe!check_df”你就明白这些字符串是干什么用的了。也就可以自己手动添加一些自己要监控的程序进去了。  
  19. #这里的check_ips中指定的ip_conn.sh脚本是要手动创建的(脚本摘自田逸老师的《互联网运营智慧》一书)。 
vim /usr/local/nrpe/libexec/ip_conn.sh
  
  
  
  
  1. #!/bin/sh  
  2. #if [ $# -ne 2 ]  
  3. #       echo "Usage:$0 -w num1 -c num2" 
  4. #exit 3  
  5. #fi  
  6. ip_conns=`netstat -an | grep tcp |grep EST |wc -l`  
  7. if [ $ip_conns -lt $1 ]  
  8.         then 
  9.         echo "OK -connect counts is $ip_conns" 
  10.         exit 0  
  11. fi  
  12. if [ $ip_conns -gt $1 -a $ip_conns -lt $2 ]  
  13.         then 
  14.         echo "Warning -connect counts is $ip_conns" 
  15.         exit 1  
  16. fi  
  17. if [ $ip_conns -gt $2 ]  
  18.         then 
  19.         echo "Critical -connect counts is $ip_conns" 
  20.         exit 2  
  21. fi  
  22. #指定2个连接数,当连接数大于指定的第一个数的时候,给予warning警报,当连接数大于指定的第二个数的时候,给予Critical警报。 

9、在各客户端测试nrpe服务中各个插件的功能

[root@nagios-server libexec]# /usr/local/nrpe/libexec/check_load -w 15,10,5 -c 30,25,20
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; load15=0.000;5.000;20.000;0;
 
[root@nagios-server libexec]# /usr/local/nrpe/libexec/check_disk -w 20% -c 10%
DISK OK - free space: / 2706 MB (41% inode=81%); /boot 81 MB (87% inode=99%); /dev/shm 251 MB (100% inode=99%); /mnt 172666 MB (81% inode=-);| /=3889MB;5558;6253;0;6948 /boot=12MB;78;88;0;98 /dev/shm=0MB;200;225;0;251 /mnt=38022MB;168550;189619;0;210688
 
[root@nagios-server libexec]# /usr/local/nrpe/libexec/check_procs -w 5 -c 10 -s Z
PROCS OK: 0 processes with STATE = Z
 
[root@nagios-server libexec]# /usr/local/nrpe/libexec/check_procs -w 150 -c 200
PROCS OK: 66 processes
 
[root@nagios-server libexec]# /usr/local/nrpe/libexec/ip_conn.sh 8000 10000
/usr/local/nrpe/libexec/ip_conn.sh: line 6: nestat: command not found
OK -connect counts is 0
 
10、在服务端测试check_nrpe功能
 
[root@nagios-server libexec]# ./check_nrpe -H nagios-server -c check_df
DISK OK - free space: / 2706 MB (41% inode=81%); /boot 81 MB (87% inode=99%); /dev/shm 251 MB (100% inode=99%); /mnt 172666 MB (81% inode=-);| /=3889MB;5558;6253;0;6948 /boot=12MB;78;88;0;98 /dev/shm=0MB;200;225;0;251 /mnt=38022MB;168550;189619;0;210688
 
 
[root@nagios-server libexec]# ./check_nrpe -H nagios-server -c check_load
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; load15=0.000;5.000;20.000;0;
 
[root@nagios-server libexec]# ./check_nrpe -H nagios-server -c check_zombie_procs
PROCS OK: 0 processes with STATE = Z
 
[root@nagios-server libexec]# ./check_nrpe -H nagios-server -c check_total_procs
PROCS OK: 69 processes
 
[root@nagios-server libexec]# ./check_nrpe -H nagios-server -c check_ips
OK -connect counts is 0
 
11、各机器以独立守护进程启动nrpe服务
/usr/local/nrpe/bin/nrpe -c /usr/local/nrpe/etc/nrpe.cfg -d
 
12、服务器端启动nagios监控服务
/usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
 
13、启动apache服务器
/usr/local/apache/bin/apachectl -k start
 
14、测试nagios功能
elinks http://127.0.0.1/nagios
输入账号密码看看是不是状态都正常。
 
15、测试通过以后,向/etc/rc.local中添加启动脚本
vim /etc/rc.local
 
  
  
  
  
  1. /usr/local/apache/bin/apachectl -k start  
  2. /usr/local/nrpe/bin/nrpe -c /usr/local/nrpe/etc/nrpe.cfg -d  
  3. /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg 

 

 

配置全部完成。

后记:在配置完成当初,完全是忘了配置php了,哎,一直提示没有权限登录。等后来编译了php以后,还是报错,我就很诧异。怎么回事呢,后来仔细检查httpd.conf,才发现原来是这一行搞的怪

ScriptAlias /nagios /usr/local/nagios/share
<Directory "/usr/local/nagios/share">

应该为Alias,改回来以后,登录nagios不报错了,但是疯狂的报Critical错误,经分析,全是check_nrpe连接外部主机的。经过反复测试,并且查看各个代码,发现原来是hostname那里连不过去。经过测试,添加到/etc/hosts中,问题解决。过了一会,全ok了。哎,一波三折啊。写的太不仔细了,太郁闷了。以后一定不会这样了。

本文出自 “周旭光_不断进取” 博客,谢绝转载!

你可能感兴趣的:(nagios,休闲,nagios搭建,nagios笔记补充,田逸老师)