#安裝nagios
創(chuàng)新互聯(lián)建站公司2013年成立,先為東豐等服務(wù)建站,東豐等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為東豐企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
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"
AuthType Basic
options ExecCGI
Allowoverride none
order allow,deny
allow from all
AuthName "Nagios Access"
AuthUserFile /usr/local/nagios/etc/htpasswd
Require valid-user
Alias /nagios "/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
#創(chuàng)建認(rèn)證文件
/usr/local/apache2/bin/htpasswd -c /usr/local/nagios/etc/htpasswd nagios
//創(chuàng)建一個nagios的用戶
#啟動相關(guān)服務(wù)
service nagios start
/usr/local/apache2/bin/apachectl start
#訪問管理頁面
http://ip/nagios