您好,登錄后才能下訂單哦!
#安裝nagios
useradd -s /sbin/nologin nagios
mkdir /usr/local/nagios
chown -R nagios.nagios /usr/local/nagios
tar zxvf nagios.tar.gz
cd nagios
./configure --prefix=/usr/local/nagios/
make all
make install
make install-init
make install-commandmode
make install-config
#安裝nagios插件
tar zxvf nagios-plugins.tar.gz
cd nagios-plusing
./configure --prefix=/usr/local/nagios
make
make install
#安裝apapche
tar zxvf httpd.tar.gz
cd httpd
./configure --prefix=/usr/local/apache2
make
make install
#安裝php
yum --disablerepo=\* --enablerepo=c5-media -y install libxml2-devel
tar zxvf php.tar.gz
cd php
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs
make
make install
#修改apache配置文件
User nagios
Group nagios
DirectoryIndex index.html index.php
AddType application/x-httpd-php .php
ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"
<Directory "/usr/local/nagios/sbin">
AuthType Basic
options ExecCGI
Allowoverride none
order allow,deny
allow from all
AuthName "Nagios Access"
AuthUserFile /usr/local/nagios/etc/htpasswd
Require valid-user
</Directory>
Alias /nagios "/usr/local/nagios/share"
<Directory "/usr/local/nagios/share">
AuthType Basic
options none
Allowoverride none
order allow,deny
allow from all
AuthName "Nagios Access"
AuthUserFile /usr/local/nagios/etc/htpasswd
Require valid-user
</Directory>
#創(chuàng)建認證文件
/usr/local/apache2/bin/htpasswd -c /usr/local/nagios/etc/htpasswd nagios
//創(chuàng)建一個nagios的用戶
#啟動相關服務
service nagios start
/usr/local/apache2/bin/apachectl start
#訪問管理頁面
http://ip/nagios
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。