热门IT资讯网

Nagios 监控平台快速安装

发表于:2024-11-29 作者:热门IT资讯网编辑
编辑最后更新 2024年11月29日,Nagios是一款开源的免费网络监视工具,能有效监控Windows、Linux和Unix的主机状态,交换机路由器等网络设置,打印机等。 一、首先安装apache:安装apache,采用yum方式安装,
Nagios是一款开源的免费网络监视工具,能有效监控Windows、Linux和Unix的主机状态,交换机路由器等网络设置,打印机等。 一、首先安装apache:
  1. 安装apache,采用yum方式安装,安装的命令是yum install -y httpd
  2. 安装完apache后,启动apache命令/etc/init.d/httpd restart 即可!
二、安装php:
  1. Nagios是基于php语音编写的程序,所以需要安装php,也采用yum方式安装
  2. Yum install php php-devel -y即可
三、下载nagios:
  1. 现在nagios版本和客户端插件地址如下:
  2. wget http://sourceforge.net/projects/nagios/files/nagios-3.x/nagios-3.2.1/nagios-3.2.1.tar.gz/download
  3. wget http://sourceforge.net/projects/nagiosplug/files/nagiosplug/1.4.15/nagios-plugins-1.4.15.tar.gz/download
  4. wget http://jaist.dl.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.13/nrpe-2.13.tar.gz
  5. 创建用户维护Nagios的用户和组
  6. useradd nagios
  7. passwd nagios
四、在服务器端,安装Nagios和nrpe、nagios插件:
  1. 安装Nagios
  2. tar zxvf nagios-3.2.1.tar.gz
  3. cd nagios-3.2.1
  4. ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios
  5. make all
  6. make install //来安装主程序,CGI和HTML文件
  7. make install-init //在/etc/rc.d/init.d安装启动脚本
  8. make install-config //来安装示例配置文件,安装的路径是/usr/local/nagios/etc
  9. make install-commandmode//来配置目录权限
  10. make install-webconf 写入配置文件
  11. 安装Nagios-plugins
  12. tar zxvf nagios-plugins-1.4.15.tar.gz
  13. cd nagios-plugins-1.4.15
  14. ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios
  15. make && make install
  16. 安装nrpe
  17. 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
  18. chown -R nagios:nagios /usr/local/nagios/
  19. /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d 启动nrpe服务
五、创建web 访问用户:
  1. 增加访问控制验证用户:(第一次创建时要加参数c)
  2. htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
  3. nagios安装完毕,然后重启apache,重启nagios,/etc/init.d/nagios restart
  4. 访问:http://localhost/nagios/ 即可! 即可访问到nagios最初安装界面
六、在客户端安装nrpe、nagios-plugin:
  1. 首先下载nagios-plugins-1.4.15.tar.gz和nrpe-2.13.tar.gz,
  2. 执行如下脚本即可:
  3. #!/bin/sh
  4. ###auto make install nagios_plugin and nrpe
  5. useradd nagios
  6. tar -xzf nagios-plugins-1.4.15.tar.gz &&cd nagios-plugins-1.4.15 &&./configure --prefix=/usr/local/nagios &&make &&make install
  7. sleep 2
  8. echo "This is make install nrpe ,please waiting .................."
  9. 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
  10. chown -R nagios:nagios /usr/local/nagios/
  11. cd .. ;cp nrpe.cfg /usr/local/nagios/etc/nrpe.cfg
  12. /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
  13. ###Add auto start
  14. grep "nrpe" /etc/rc.local
  15. if [ $? -ne 0 ];then
  16. echo "/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d" >>/etc/rc.local
  17. else
  18. echo "nrpe is exist"
  19. fi
  20. 保存即可!
0