在CentOS6.5下安装nagios4.x

使用root用户登录:

yum install httpd php gcc glibc glibc-common gd gd-devel -y
useradd nagios
groupadd nagcmd
usermod -a -G nagcmd nagios
usermod -a -G nagcmd apache


wget http://sourceforge.net/projects/nagios/files/nagios-4.x/nagios-4.0.8/nagios-4.0.8.tar.gz

tar zxvf nagios-4.0.8.tar.gz
cd nagios-4.0.8
./configure --with-command-group=nagcmd
make all
make install
make install-init
make install-config
make install-commandmode
make install-webconf


cp -R contrib/eventhandlers/ /usr/local/nagios/libexec/
chown -R nagios:nagios /usr/local/nagios/libexec/eventhandlers

htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin


wget https://nagios-plugins.org/download/nagios-plugins-2.0.3.tar.gz

tar xzvf nagios-plugins-2.0.3.tar.gz
cd nagios-plugins-1.5
./configure --with-nagios-user=nagios --with-nagios-group=nagios
make
make install


设置自动启动服务
chkconfig nagios on
chkconfig httpd on
service httpd start
service nagios start


使用浏览器http://ip地址/nagios
username nagiosadmin
password password


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。