Nagios是一款开源的免费网络监视工具,能有效监控Windows、Linux和Unix的主机状态,交换机路由器等网络设置,打印机等。
一、首先安装apache:
安装apache,采用yum方式安装,安装的命令是yum install –y httpd 安装完apache后,启动apache命令/etc/init.d/httpd restart 即可!
二、安装php:
Nagios是基于php语音编写的程序,所以需要安装php,也采用yum方式安装 Yum install php php-devel -y即可
三、下载nagios:
现在nagios版本和客户端插件地址如下: wget wget wget 创建用户维护Nagios的用户和组 useradd nagios passwd nagios四、在服务器端,安装Nagios和nrpe、nagios插件:
五、创建web 访问用户:
增加访问控制验证用户:(第一次创建时要加参数c) htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin nagios安装完毕,然后重启apache,重启nagios,/etc/init.d/nagios restart 访问: 即可! 即可访问到nagios最初安装界面
六、在客户端安装nrpe、nagios-plugin:
首先下载nagios-plugins-1.4.15.tar.gz和nrpe-2.13.tar.gz, 执行如下脚本即可: #!/bin/sh ###auto make install nagios_plugin and nrpe useradd nagios tar -xzf nagios-plugins-1.4.15.tar.gz &&cd nagios-plugins-1.4.15 &&./configure --prefix=/usr/local/nagios &&make &&make install sleep 2 echo "This is make install nrpe ,please waiting .................." cd ../ ; tar -xzf nrpe-2.13.tar.gz && cd nrpe-2.13 &&./configure --enable-ssl --with-ssl-lib &&make all && make install-plugin && make install-daemon && make install-daemon-config chown -R nagios:nagios /usr/local/nagios/ cd .. ;cp nrpe.cfg /usr/local/nagios/etc/nrpe.cfg /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d ###Add auto start grep "nrpe" /etc/rc.local if [ $? -ne 0 ];then echo "/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d" >>/etc/rc.local else echo "nrpe is exist" fi 保存即可!