真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

nagios一鍵安裝腳本V1.0(客戶端+服務端)

服務端腳本:

河源網(wǎng)站建設公司成都創(chuàng)新互聯(lián),河源網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為河源超過千家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務好的河源做網(wǎng)站的公司定做!

#!//bin/bash
#nagios一鍵安裝腳本
path=`pwd`
yum_user()
{
echo -e "\033[32m開始安裝基礎支持套件和添加用戶......\033[0m"
yum -y install httpd gcc glibc glibc-common gd gd-devel 
if [ $? -ne 0 ]
then 
  echo -e "\033[31mYUM安裝失?。033[0m"
  exit 1
fi
echo -e "\033[32mnagios依賴組件安裝完成!\033[0m"
/usr/sbin/useradd -m nagios &&/usr/sbin/groupadd nagcmd
/usr/sbin/usermod -a -G nagcmd nagios
/usr/sbin/usermod -a -G nagcmd apache
if [ $? -ne 0 ]
then 
  echo -e "\033[31m添加用戶失?。033[0m"
  exit 2
fi
echo -e "\033[32mnagios用戶組配置完成!\033[0m"
}
nagios_ins()
{
echo -e "\033[32m開始安裝nagios_cn程序......\033[0m"
cd ${path}/download
tar jxvf nagios-cn-*.tar.bz2
cd nagios-cn-*
./configure --with-command-group=nagcmd
make all
make install
make install-init   
make install-config
make install-commandmode
make install-webconf
if [ $? -ne 0 ]
then 
  echo -e "\033[31mnagios_cn安裝失敗!\033[0m"
  exit 3
fi
echo -e "\033[32mnagios_cn程序安裝成功!\033[0m"
echo -e "\033[32m開始設置nagios_cn程序......\033[0m"
echo -en "\033[32m請輸入nagiosadmin用戶密碼:\033[0m"
read passwd
htpasswd -cb /usr/local/nagios/etc/htpasswd.users nagiosadmin ${passwd}
service httpd restart 
chkconfig --add httpd &&chkconfig httpd on
chkconfig --add nagios &&chkconfig nagios on 
cat>>/root/.bashrc<>/usr/local/nagios/etc/objects/commands.cfg<> /etc/rc.d/rc.local << EOF              
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d     
EOF
if [ $? -ne 0 ]
then 
  echo -e "\033[31mnrpe設置失敗!\033[0m"
  exit 2
fi
echo -e "\033[32mnrpe程序設置成功!\033[0m"

}
echo -e "\033[33m開始安裝nagios......\033[0m"
echo -e "\033[32m\n\t(1)基礎套件與用戶添加\n\t(2)安裝nagios-cn\n\t(3)安裝nagios-plugins\n\t(4)安裝nrpe\n\t(5)退出程序(exit)\033[0m"
read -p "請輸入選擇:" choice
case ${choice} in
1)
   yum_user;;
2)
   nagios_ins;;
3)
   nagios_plugins_ins;;
4)
   nrpe_ins;;
5) 
   break;;
*)
   echo -e "\033[31m您輸入了:$num,設定沒有此選項,請重輸 \033[0m"
   break;;
esac

客戶端腳本:

#!/bin/bash
path=`pwd`
nagios_server="192.168.1.1"

yum_user()
{
echo -e "\033[32m開始安裝基礎支持套件和添加用戶......\033[0m"
yum -y install gcc  
if [ $? -ne 0 ]
then 
  echo -e "\033[31mYUM安裝失??!\033[0m"
  exit 1
fi
echo -e "\033[32mnagios依賴組件安裝完成!\033[0m"
/usr/sbin/useradd -m nagios 
if [ $? -ne 0 ]
then 
  echo -e "\033[31m添加用戶失??!\033[0m"
  exit 2
fi
echo -e "\033[32mnagios用戶配置完成!\033[0m"
}
nagios_plugins_ins()
{
echo -e "\033[32m開始安裝nagios_plugins程序......\033[0m"
cd ${path}
tar zxvf nagios-plugins-*.tar.gz
cd nagios-plugins-*
./configure --with-nagios-user=nagios --with-nagios-group=nagios
make&&make install 
chown nagios.nagios /usr/local/nagios/
chown -R nagios.nagios /usr/local/nagios/libexec/
if [ $? -ne 0 ]
then 
  echo -e "\033[31mnagios_plugins安裝失敗!\033[0m"
  exit 2
fi
echo -e "\033[32mnagios_plugins程序安裝成功!\033[0m"
}

nrpe_ins()
{
echo -e "\033[32m開始安裝nagios_plugins程序......\033[0m"
cd ${path}
tar zxvf nrpe-*.tar.gz
cd nrpe-*
./configure --with-nagios-user=nagios --with-nagios-group=nagios
make all
make install-plugin
make install-daemon
make install-daemon-config
if [ $? -ne 0 ]
then 
  echo -e "\033[31mnrpe安裝失敗!\033[0m"
  exit 2
fi
echo -e "\033[32mnrpe程序安裝成功!\033[0m"
echo -e "\033[32m開始設置nrpe程序......\033[0m"

cat >> /etc/rc.d/rc.local << EOF              
>/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d     
EOF
sed -i 's@allowed_hosts=127.0.0.1@allowed_hosts=192.168.1.1@' /usr/local/nagios/etc/nrpe.cfg
/usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d 
sleep 1
/usr/local/nagios/libexec/check_nrpe -H ${nagios_server}
if [ $? -ne 0 ]
then 
  echo -e "\033[31mnrpe設置失??!\033[0m"
  exit 2
fi
echo -e "\033[32mnrpe程序設置成功!\033[0m"
}


echo -e "\033[33m開始安裝nagios_client......\033[0m"
echo -e "\033[32m\n\t(1)基礎套件與用戶添加\n\t(2)安裝nagios-plugins\n\t(3)安裝nrpe\n\t(4)退出程序(exit)\033[0m"
read -p "請輸入選擇:" choice
case ${choice} in
1)
   yum_user;;
2)
   nagios_plugins_ins;;
3)
   nrpe_ins;;
4) 
   break;;
*)
   echo -e "\033[31m您輸入了:$num,設定沒有此選項,請重輸 \033[0m"
   break;;
esac

本文名稱:nagios一鍵安裝腳本V1.0(客戶端+服務端)
當前地址:http://weahome.cn/article/pseiis.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部