(2) step 2:add nagios user and group
/usr/sbin/useradd-m nagios
#/usr/sbin/useraddapache
/usr/sbin/groupaddnagcmd
/usr/sbin/usermod-a -G nagcmd nagios
/usr/sbin/usermod-a -G nagcmd apache
(3) step 3:download and install nagios
unzipoldboy_training_nagios_soft.zip
tar xzfnagios-3.5.1.tar.gz
cd nagios
./configure 【--with-group=nagios --with-user=nagios】--with-command-group=nagcmd
make all
make install
makeinstall-init
makeinstall-config
makeinstall-commandmode
makeinstall-webconf #出现404,说明没执行这个
(4) step 4:config web auth
htpasswd -cb/usr/local/nagios/etc/htpasswd.users tong 123456 //用户认证,登录nagios
(5) step 5:install nagios-plugins
yum -y installperl-devel
tar zxfnagios-plugins-2.1.1.tar.gz
cdnagios-plugins-2.1.1
./configure--with-nagios-user=nagios --with-nagios-group=nagios --
enable-perl-modules
make &&make install
ls /usr/local/nagios/libexec/|wc-l 看有几个
(6) step 6:install nrpe
tar zxvfnrpe-2.12.tar.gz
cd nrpe-2.12
./configure
make all
makeinstall-plugin
makeinstall-daemon
makeinstall-daemon-config
(7) step 7:startup service and check
/etc/init.d/nagios start
service httpd start
echo -----------
lsof -i tcp:80
echo ----------
ps -ef|grepnagios 没进程就iptables -F
echo"NAGIOS is successfully installed."
echo ok
我的访问地址:http://192.168.217.131/nagios/
二.客户端的安装
环境:centos7 IP:192.168.217.137
(1) step 1: add nagios user
#useradd -mnagios -s /sbin/nologin
(2) step 2: install nagios-plugins
yum -y install perl-devel
tar zxfnagios-plugins-2.1.1.tar.gz
cdnagios-plugins-2.1.1
./configure--prefix=/usr/local/nagios --enable-perl-modules --enable-redhat-pthread-workaround
make &&make install
ls/usr/local/nagios/libexec/|wc -l
(3) step 3: install nrpe
tar zxfnrpe-2.12.tar.gz
cd nrpe-2.12
./configure
make all
makeinstall-plugin
makeinstall-daemon
makeinstall-daemon-config
(4) step 4: install soft for iostat
tar zxvfParams-Validate-0.91.tar.gz
cdParams-Validate-0.91
perl Makefile.PL
make
make install
#----------------------------------------
tar zxvfClass-Accessor-0.31.tar.gz
cdClass-Accessor-0.31
perl Makefile.PL
make
make install
#----------------------------------------
tar zxvfConfig-Tiny-2.12.tar.gz
cd Config-Tiny-2.12
perl Makefile.PL
make
make install
#----------------------------------------
tar zxvfMath-Calc-Units-1.07.tar.gz
cdMath-Calc-Units-1.07
perl Makefile.PL
make
make install
#----------------------------------------
tar zxvfRegexp-Common-2010010201.tar.gz
cdRegexp-Common-2010010201
perl Makefile.PL
make
make install
#----------------------------------------
tar zxvfNagios-Plugin-0.34.tar.gz
cdNagios-Plugin-0.34
perl Makefile.PL
make
make install
#______________________
#for monitoriostat
yum installsysstat -y
【check_memory.pl安装包有】
/bin/cp/home/oldboy/tools/check_memory.pl /usr/local/nagios/libexec
/bin/cp/home/oldboy/tools/check_iostat /usr/local/nagios/libexec