大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
# tar zcvf packages.tar.gz nagios-plugins-1.4.16.tar.gz nrpe-2.12.tar.gz
#!/bin/bash for rpm in {automake,make,gcc,libgcc,xinetd};do rpm -q $rpm || yum install $rpm ;done dir=/tmp/install/ if [ -e $dir ];then rm -rf $dir/* else mkdir $dir fi #tail -n +30 $0 >$dir/packages.tar.gz #30表示脚本的行数,此命令是把shell后面的gz文件提出来。 sed -n -e '1,/^exit 0$/!p' $0 > ${dir}/packages.tar.gz 2>/dev/null #跟上面一个意思,这个是从第一行到"exit 0"这行结束提出来。 cd $dir tar xf packages.tar.gz echo "###useradd nagios###" id nagios if [ $? -eq 0 ];then echo "user nagios was exist" ; else useradd -s /sbin/nologin nagios ; fi echo "###install nagios-plugins###" cd $dir tar xf nagios-plugins-1.4.16.tar.gz && cd nagios-plugins-1.4.16 && ./configure || echo "configure is wrong" && make && make install echo "###chown privilege for directory nagios####" chown nagios. /usr/local/nagios -R echo "###install nrpe###" cd $dir tar xf nrpe-2.12.tar.gz && cd nrpe-2.12 && ./configure || echo "configure was wrong" && make all && make install-plugin && make ins tall-daemon && make install-daemon-config && make install-xinetd echo "###change config file###" sed -i '/only_from/s/127\.0\.0\.1/127\.0\.0\.1 10\.6\.8\.200/g' /etc/xinetd.d/nrpe echo "nrpe 5666/tcp # nrpe" >> /etc/services echo "###start services###" /etc/init.d/xinetd restart && echo "xinetd services was running" || echo "xinetd services was wrong" exit 0 #脚本执行完需要退出,不然会重复执行,此处很重要。。。3.然后封装成bin文件
# cat install_nagios_client.sh packages.tar.gz >nagios.bin # chmod +x nagios.bin # ./nagios.bin
4.验证是否正常运行
创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于网站设计、网站制作、柳城网络推广、小程序开发、柳城网络营销、柳城企业策划、柳城品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;创新互联公司为所有大学生创业者提供柳城建站搭建服务,24小时服务热线:13518219792,官方网址:www.cdcxhl.com
# netstat -lutnp |grep 5666 tcp 0 0 0.0.0.0:5666 0.0.0.0:* LISTEN 28374/xinetd # /usr/local/nagios/libexec/check_nrpe -H 10.6.1.34 NRPE v2.12