码迷,mamicode.com
首页 > 移动开发 > 详细

nagios_kehu.sh

时间:2014-07-02 11:31:30      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:profile   local   export   

####yum install##
yum install gcc gcc-c++ openssl* ntp perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker -y
echo ‘export LC_ALL=C‘>> /etc/profile
tail -1 /etc/profile
source /etc/profile
/usr/sbin/ntpdate pool.ntp.org

####install nagios###
/usr/sbin/adduser nagios -M -s /sbin/nologin
tar zxf nagios-plugins-1.4.13.tar.gz
cd nagios-plugins-1.4.13
./configure --with-nagios-user=nagios --with-nagios-group=nagios --enable-perl-modules
make && make install
ls /usr/local/nagios/libexec/|wc -l
cd ..

####install 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 ..

#####install Params####
tar zxvf Params-Validate-0.91.tar.gz
cd Params-Validate-0.91
perl Makefile.PL
make 
make install
cd ..
####install Class######
tar zxvf Class-Accessor-0.31.tar.gz
cd Class-Accessor-0.31
perl Makefile.PL
make 
make install
cd ..
#####install Config#####
tar zxvf Config-Tiny-2.12.tar.gz
cd Config-Tiny-2.12
perl Makefile.PL
make 
make install
cd ..
####install Math-Calc#####
tar zxvf Math-Calc-Units-1.07.tar.gz
cd Math-Calc-Units-1.07
perl Makefile.PL
make 
make install
cd ..
#####install Regexp#####
tar zxvf Regexp-Common-2010010201.tar.gz
cd Regexp-Common-2010010201
perl Makefile.PL
make 
make install
cd ..
####install Nagios-Plugin###
tar zxvf Nagios-Plugin-0.34.tar.gz
cd Nagios-Plugin-0.34
perl Makefile.PL
make 
make install
cd ..

#for monitor iostat
yum install sysstat -y

cp -rf check_iostat /usr/local/nagios/libexec/
cp -rf check_memory.pl /usr/local/nagios/libexec/
dos2unix /usr/local/nagios/libexec/check_iostat
dos2unix /usr/local/nagios/libexec/check_memory.pl
chmod 755 /usr/local/nagios/libexec/check_iostat
chmod 755 /usr/local/nagios/libexec/check_memory.pl

 


 

本文出自 “liunx系统” 博客,谢绝转载!

nagios_kehu.sh,布布扣,bubuko.com

nagios_kehu.sh

标签:profile   local   export   

原文地址:http://cuncai2014.blog.51cto.com/8733819/1433284

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!