Nagios是一个监视系统运行状态和网络信息的监视系统。Nagios能监视所指定的本地或远程主机以及服务,同时提供异常通知功能等。 

Nagios可运行在Linux/Unix平台之上,同时提供一个可选的基于浏览器的WEB界面以方便系统管理人员查看网络状态,各种系统问题,以及日志等等。

功能介绍:

Nagios 可以监控的功能有:

1、监控网络服务(SMTP、POP3、HTTP、NNTP、PING等);

2、监控主机资源(处理器负荷、磁盘利用率等);

3、简单地插件设计使得用户可以方便地扩展自己服务的检测方法;

4、并行服务检查机制;

5、具备定义网络分层结构的能力,用"parent"主机定义来表达网络主机间的关系,这种关系可被用来发现和明晰主机宕机或不可达状态;

6、当服务或主机问题产生与解决时将告警发送给联系人(通过EMail、短信、用户定义方式);

7、可以定义一些处理程序,使之能够在服务或者主机发生故障时起到预防作用;

8、自动的日志滚动功能;

9、可以支持并实现对主机的冗余监控;

10、可选的WEB界面用于查看当前的网络状态、通知和故障历史、日志文件等;

11、可以通过手机查看系统监控信息;

12、可指定自定义的事件处理控制器;

1.改yum源

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

2.调整字符集

echo 'export LC_ALL=C'>> /etc/profile
source /etc/profile

3.关闭SELINUX,防火墙

/etc/init.d/iptables stop
/etc/init.d/iptables stop
chkconfig iptables off
setenforce 0
sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config

4.时间同步

/usr/sbin/ntpdate pool.ntp.org
echo '#time sync by qinzc at 2018-9-6'>>/var/spool/cron/root
echo '*/10 * * * * /usr/sbin/ntpdate pool.ntp.org >/dev/null 2>&1'>>/var/spool/cron/root
crontab -l

5.安装依赖包

yum install gcc glibc glibc-common -y
yum install gd gd-devel -y
yum install httpd php php-gd -y
yum install mysql* -y

6.添加用户和组

#/usr/sbin/useradd apache
/usr/sbin/useradd -m nagios
/usr/sbin/groupadd nagcmd
/usr/sbin/usermod -a -G nagcmd nagios
/usr/sbin/usermod -a -G nagcmd apache

7.解压并编译Nagios相关包

unzip oldboy_training_nagios_soft.zip 
tar xzf nagios-3.5.1.tar.gz
cd nagios
./configure --with-command-group=nagcmd
make all
make install
make install-init
make install-config
make install-commandmode
make install-webconf
cd ../

-rw-r--r--.  1 root root    4336 6月  20 2010 check_iostat       //IO监控等插件,以下没备注全是此插件需要
-rw-r--r--.  1 root root   10964 2月  10 2009 Class-Accessor-0.31.tar.gz
-rw-r--r--.  1 root root   16072 2月  10 2009 Config-Tiny-2.12.tar.gz
-rw-r--r--.  1 root root   34025 6月  20 2010 Math-Calc-Units-1.07.tar.gz
-rw-r--r--.  1 root root   44846 6月  20 2010 Nagios-Plugin-0.34.tar.gz
-rw-r--r--.  1 root root  112749 6月  20 2010 Regexp-Common-2010010201.tar.gz
-rw-r--r--.  1 root root   89148 2月  10 2009 Params-Validate-0.91.tar.gz

-rw-r--r--.  1 root root    4827 11月 13 2008 check_memory.pl              //检测内存插件
-rw-r--r--.  1 root root   95436 2月  10 2009 check_mysql                               //检测mysql数据库插件
-rw-r--r--.  1 root root  395528 8月  29 2010 libart_lgpl-2.3.17.tar.gz                    //绘图相关依赖库
-rw-r--r--.  1 root root 1763584 8月  31 2013 nagios-3.5.1.tar.gz             //nagios主程序
-rw-r--r--.  1 root root 2087089 6月  28 2012 nagios-plugins-1.4.16.tar.gz           //nagios插件程序
-rw-r--r--.  1 root root  405725 10月 10 2009 nrpe-2.12.tar.gz              //客户端守护进程
-rw-r--r--.  1 root root  455593 7月   2 2010 pnp-0.4.14.tar.gz             //绘图WEB界面程序
-rw-r--r--.  1 root root 1043096 6月  25 2008 rrdtool-1.2.14.tar.gz            //实际绘图软件,被pnp调用

点击下载:oldboy_training_nagios_soft.zip


8.配置WEB认证

htpasswd -cb /usr/local/nagios/etc/htpasswd.users qinzc 123456

9.安装插件

yum -y install perl-devel  //安装插件必安装

tar zxf nagios-plugins-1.4.16.tar.gz
cd nagios-plugins-1.4.16
./configure --with-nagios-user=nagios --with-nagios-group=nagios --enable-perl-modules
make && make install
cd ../
ls /usr/local/nagios/libexec/|wc -l

10.安装NRPE

tar zxvf nrpe-2.12.tar.gz
cd nrpe-2.12
./configure 
make all
make install-plugin
make install-daemon
make install-daemon-config
cd ..

11.启动服务,并检查

/etc/init.d/nagios start
/etc/init.d/httpd start
echo -----------
lsof -i tcp:80
echo ----------
ps -ef|grep nagios
echo "NAGIOS is successfully installed."
echo ok

至此服务端安装完毕