安装nagios-plugins
本文讲述的是:Redhat配置nagios。返回大纲。
- [root@localhost src]# tar zxvf nagios-plugins-1.4.15.tar.gz
- [root@localhost nagios-plugins-1.4.15]#./configure --with-nagios-user=nagios --with-nagios-group=nagios --prefix=/usr/local/nagios
- [root@localhost nagios-plugins-1.4.15]# make && make install
验证是否安装成功,是否生成如下文件
- [root@localhost nagios-plugins-1.4.15]# ls /usr/local/nagios/libexec
- check_apt check_disk_smb check_ide_smart check_mrtg check_nwstat check_sensors check_users
- check_breeze check_dns check_ifoperstatus check_mrtgtraf check_oracle check_smtp check_wave
- check_by_ssh check_dummy check_ifstatus check_nagios check_overcr check_ssh negate
- check_clamd check_file_age check_imap check_nntp check_ping check_swap urlize
- check_cluster check_flexlm check_ircd check_nt check_pop check_tcp utils.pm
- check_dhcp check_ftp check_load check_ntp check_procs check_time utils.sh
- check_dig check_http check_log check_ntp_peer check_real check_udp
- check_disk check_icmp check_mailq check_ntp_time check_rpc check_ups
配置nagios的WEB接口,也可以通过如下命令更改用户密码,
- [root@localhost etc]# /usr/bin/htpasswd -c /usr/local/nagios/etc/htpasswd nagiosadmin
- New password:
- Re-type new password:
- Adding password for user nagiosadmin
- [root@localhost etc]# service httpd start
- Starting httpd: [ OK ]
编辑httpd.conf,在结尾加上如下内容,保存,启动apache,service httpd restart
- ScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin
- Options ExecCGI
- AllowOverride None
- Order allow,deny
- Allow from all
- AuthName "Nagios Access"
- AuthType Basic
- AuthUserFile /usr/local/nagios/etc/htpasswd
- Require valid-user
- Alias /nagios /usr/local/nagios/share
- Options None
- AllowOverride None
- Order allow,deny
- Allow from all
- AuthName "Nagios Access"
- AuthType Basic
- AuthUserFile /usr/local/nagios/etc/htpasswd
- Require valid-user
设置开机启动nagios服务
- [root@localhost nagios-plugins-1.4.15]# chkconfig --add nagios
- [root@localhost nagios-plugins-1.4.15]# chkconfig nagios on
验证nagios配置是否正常,此命令以后会经常使用,warning和error为0,表示正常,后面不正常的讨论,这里可以启动nagios服务
- [root@localhost nagios-plugins-1.4.15]# /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
- ……
- Checking misc settings...
- Total Warnings: 0
- Total Errors: 0
- [root@localhost nagios-plugins-1.4.15]# service nagios start
- Starting nagios: done.
【编辑推荐】