nagios伺服器安裝(監控端)
一、準備工作
安裝nagios伺服器用到的安裝包包括:
nagios-3.2.3.tar.gz
nagios-plugins-1.4.15.tar.gz
nrpe- 2.12.tar.gz
當然要想方便的使用nagios還要有apache服務,安裝包為:httpd-2.2.19.tar.gz,php-5.3.1.tar.gz。
之後就可以進行nagios正式安裝了。
二、安裝nagios主程式
1.建立nagios使用者
useradd nagios
mkdir /usr/local/nagios
chown nagios.nagios /usr/local/nagios
2.建立nagios使用者組
3.解壓安裝
tar -zxvf nagios-3.2.3.tar.gz
cd nagios-3.2.3
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios--with-nagios-group=nagios --with-command-group=nagcmd
make all
make install (編譯安裝)
make install-init (生成啟動指令碼)
make install-config (生成配置檔案)
make install-commandmode (為外部命令檔案配置目錄許可權)
make install-webconf (生成乙個與apache介面的配置檔案)
4.檢查
ls /usr/local/nagios/
看到bin etc libexec sbin share var這五個資料夾說明安裝成功。
三、安裝外掛程式
1.解壓安裝
tar -zxvf nagios-plugins-1.4.15.tar.gz
cd nagios-plugins-1.4.15
./configure --prefix=/usr/local/nagios/
make
make install
2.檢查
ls /usr/local/nagios/libexec/ #會在這個目錄下看到我們所安裝的外掛程式
四、修改apache配置
1.生成http使用者驗證檔案,使用者名為nagios
/usr/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users nagios2.將
nagios
的資訊加到
apache
中(可選)
在檔案最後新增如下**:
(
注:安裝過程中已自動生成nagios.conf,故這個步驟不用要)
scriptalias /nagios/cgi-bin /usr/local/nagios/sbin
options execcgi
allowoverride none
order allow,deny
allow from all
authname "nagios access"
authtype basic
authuserfile /usr/loc
al/nagios/etc/htpasswd.users
require valid-user
alias /nagios /usr/local/nagios/share
options none
allowoverride none
order allow,deny
allow from all
authname "nagios access"
authtype basic
authuserfile /usr/local/nagios/etc/htpasswd.users
require valid-user
五、啟動服務
在瀏覽器中輸入輸入完使用者名稱和密碼後就可以進入nagios系統了。 (使用者名為nagios)
nagios極其簡單安裝配置教程
更新yum庫 wget rpm ivh rpmforge release 0.5.2 2.el5.rf.i386.rpm 安裝nagios yum y install nagios nagios nrpe nagios plugins nagios plugins nrpe check logfil...
nagios極其簡單安裝配置教程
更新yum庫 wget rpm ivh rpmforge release 0.5.2 2.el5.rf.i386.rpm 安裝nagios yum y install nagios nagios nrpe nagios plugins nagios plugins nrpe check logfil...
nagios安裝文件
1,nagios安裝 安裝環境nagios依賴的環境 yum y install gcc yum y install glibc glibc common yum y install gd gd devel 解壓並安裝 cd opt soft tar xf nagios 3.4.1.tar.gz o...