日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
nagios客戶端腳本安裝
第一版
#!/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