溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

開源監(jiān)控解決方案Nagios+Cacti+PNP4Nagios+NConf+NDOUtils+Nagvis(二)nagios安裝

發(fā)布時(shí)間:2020-08-21 07:42:07 來源:網(wǎng)絡(luò) 閱讀:823 作者:369177825 欄目:移動(dòng)開發(fā)

1.nagios安裝


groupadd nagios
 
useradd -g nagios nagios

mkdir -p /usr/local/nagios/

passwd nagios
 
tar -xvf nagios-4.0.8.tar.gz
 
cd nagios-4.0.8
 
./configure --prefix=/usr/local/nagios/ --with-command-group=nagios --with-nagios-user=nagios --with-nagios-group=nagios
 
make all
make install
make install-init
make install-commandmode
make install-config
make install-webconf
 
2.nagios-plugins安裝
tar -xvf nagios-plugins-2.1.1.tar.gz
cd nagios-plugins-2.1.1
./configure --prefix=/usr/local/nagios/ --with-nagios-user=nagios --with-nagios-group=nagios
make && make install
 
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg

3.配置驗(yàn)證用戶
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin

chown -R nagios.nagios /usr/local/nagios/etc/htpasswd.users

4.安裝NRPE
tar -xvf nrpe-2.12.tar.gz
cd nrpe-2.12
./configure --prefix=/usr/local/nagios --enable-command-args
make all
make install-plugin
make install-daemon
make install-daemon-config

 
/etc/init.d/httpd start
/etc/init.d/nagios start

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI