溫馨提示×

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

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

nagios如何安裝配置

發(fā)布時(shí)間:2021-10-21 11:53:50 來源:億速云 閱讀:124 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要為大家展示了“nagios如何安裝配置”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“nagios如何安裝配置”這篇文章吧。

1安裝前準(zhǔn)備:
Apache2
GCC編譯器與開發(fā)庫
GD庫與開發(fā)庫
php

2創(chuàng)建帳號(hào):
/usr/sbin/useradd nagios --創(chuàng)建帳號(hào)組
mkdir /usr/local/nagios --創(chuàng)建安裝目錄
chown nagios:nagios /usr/local/nagios  --修改目錄權(quán)限
usermod -G nagios apache --將Web帳號(hào)加入nagios組,可以在web操作。


3安裝:
wget http://ncu.dl.sourceforge.net/project/nagios/nagios-3.x/nagios-3.2.3/nagios-3.2.3.tar.gz
tar -zxvf nagios-3.2.3.tar.gz
./configure --prefix=/usr/local/nagios
make all
make install   -- This installs the main program, CGIs, and HTML files
make install-init  -- This installs the init script in /etc/rc.d/init.d
make install-commandmode -- This installs and configures permissions on the
make install-config  -- This installs *SAMPLE* config files in /usr/local/nagios/etc
make install-webconf  -- This installs the Apache config file for the Nagios

4.配置文件:
more /etc/httpd/conf.d/nagios.conf
¥¥¥AuthUserFile /usr/local/nagios/etc/htpasswd.users
cp /etc/httpd/conf.d/nagios.conf /var/www/html/
nagios頁面訪問賬號(hào):
/usr/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
New password:     --nagiosadmin 帳號(hào)權(quán)限已經(jīng)默認(rèn)設(shè)置了。
Re-type new password:    --配置文件看/usr/local/nagios/etc/nagios.cfg
Adding password for user root  --重點(diǎn)/usr/local/nagios/etc/cgi.cfg

這里注意: nagiosadmin作為默認(rèn)用戶是用從WEB頁面直接操作CGI功能,換句話說也就可以在頁面中直接進(jìn)行操作,如果需要修改用戶名,那么需要在/usr/local/nagios/etc/cgi.cfg 賦予新永明WEB頁面操作權(quán)限,當(dāng)然一般使用nagios就不建議采用頁面操作。


log日志
touch /usr/local/nagios/var/nagios.log
chown nagios:nagios /usr/local/nagios/var/nagios.log
5.配置開機(jī)啟動(dòng):
設(shè)置nagios為開機(jī)啟動(dòng)
[root@localhostnagios]# chkconfig nagios on
[root@localhostnagios]# service nagios start
[root@localhost soft]# service httpd restart
6.測(cè)試
http://192.168.28.X/nagios/

安裝首要插件:nagios-plugins

以上是“nagios如何安裝配置”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI