新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
nagios客戶端腳本安裝
第一版
本文題目:nagios客戶端腳本安裝
文章位置:http://www.dlmjj.cn/article/gpjedi.html
#!/bin/sh set -x groupadd nagios useradd -g nagios -s /sbin/nologin nagios cd nrpe-2.12 ./configure make all make install-plugin make install-daemon make install-daemon-config cd /data/nagios-plugins-1.4.11/ ./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 set +x
第二版
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:空間域名、虛擬主機(jī)、營銷軟件、網(wǎng)站建設(shè)、萬榮網(wǎng)站維護(hù)、網(wǎng)站推廣。
[root@xiazai data]# cat add_nagios.sh #!/bin/sh set -x groupadd nagios useradd -g nagios -s /sbin/nologin nagios rpm -qa|grep openssl-devel if [ $? == 0 ] then cd nrpe-2.12 ./configure make all make install-plugin make install-daemon make install-daemon-config cd /data/nagios-plugins-1.4.11/ ./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 else echo "please install openssl-devel" fi set +x
本文題目:nagios客戶端腳本安裝
文章位置:http://www.dlmjj.cn/article/gpjedi.html