- 安装依赖包
yum install httpd php gcc glibc glibc-common gd gd-devel
- 创建账号信息
useradd -s /sbin/nologin nagios passwd nagios groupadd nagcmd usermod -a -G nagcmd nagios usermod -a -G nagcmd apache
- 编译软件
./configure --with-command-group=nagcmd make all make install make install-init make install-config make install-commandmode
make install-webconf
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
- 编译安装插件
./configure --with-nagios-user=nagios --with-nagios-group=nagios make make install
chown -R nagios.nagcmd /usr/local/nagios
- 设置开机启动
chkconfig --add nagios chkconfig --add httpd chkconfig nagios on chkconfig httpd on service httpd start service nagios start
http://localhost/nagios/
时间: 2024-10-05 03:38:03