安装nagios. 实验环境是rh7.2 (nagios-4.2.4.tar.gz nagios-plugins-2.1.4.tar.gz nrpe-3.0.1.tar.gz )
什么是监控 :
Nagios的功能是监控服务和主机,但是他自身并不包括这部分功能,所有的监控、检测功能都是通过各种插件来完成的
监控的功能:
Nagios的功能是监控服务和主机,但是他自身并不包括这部分功能,所有的监控、检测功能都是通过各种插件来完成的
可以监控什么:
1、主机是否宕机(通过ping命令,如果ping不通认为主机属于宕机状态,但不影响所监控的其他服务);2、服务资源(cpu使用率、硬盘剩余空间等);3、网络服务(smtp、pop3、http);4、监控网络设备(路由器、交换机等)。
2.. 搭建环境:yum -y install httpd php
systemctl start httpd
systemctl enable httpd
3.. 安装提供服务的包:
rpm -q gcc gcc-c++
4.创建用户/属组
useradd nagios
groupadd nagcmd
usermod -G nagcmd nagios(用户nagios添加到nagcmd)
5.解压
53 tar zxf nagios-4.2.4.tar.gz
54 tar zxf nagios-plugins-2.1.4.tar.gz
55 tar zxf nrpe-3.0.1.tar.gz
6.. cd 到 nagios-4.2.4 ([root@zhu nagios-4.2.4]# )
./configure –with-nagios-user=nagios –with-nagios-group=nagcmd –with-command-user=nagios –with-command-group=nagcmd
7.. 编译安装
make all && make install &&make install-init&&make install-commandmode&&make install-config&&make install-webconf&&make install-exfoliation
[root@zhu nagios-4.2.4]# cd /usr/local/nagios/
[root@zhu nagios]# ls
bin etc include libexec sbin share var
bin 可执行命令 etc 配置文件 libexec 监控插件 sbin cgi文件 share 网页文件 var 日志文件状态信息
8.安装监控插件
tar -zxvf nagios-plugins-2.1.4.tar.gz
cd nagios-plugins-2.1.4/
./configure –with-nagios-user=nagios –with-nagios-group=nagcmd
make
make install
9.设置登录监控页面的用户和密码
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
cat /usr/local/nagios/etc/htpasswd.users
grep “nagiosadmin” /usr/local/nagios/etc/cgi.cfg
10.. 启动nagios 服务
/etc/init.d/nagios start | stop
systemctl restart httpd
11.. 客户端 访问监控页面查看监控信息
ping 192.168.4.200
firefox http://192.168.4.200/nagios