Centos 7上安装Centreon+nagios架构。完成程序安装后,发现无法通过浏览器打开WEB,进行最后配置。
经过几天努力,参考网上资料,验证后,找到了解决方法。
首先请关闭Centos防火墙。否则,无法进行WEB访问。
[root@localhost ~]# systemctl stop firewalld.service [root@localhost ~]# systemctl disable firewalld.service
这样,发现可以打开根目录 和nagios界面,但是打开Centreon,报forbidden 403错误。提示如下:
You don't have permission to access /centreon/
这是由于centreon没有安装在Apacher默认目录下。打开httpd.conf。找到如下部分:
<Directory /> AllowOverride none Require all denied </Directory>
修改为,如下,然后重启Apacher即可。
<Directory /> # AllowOverride none # Require all denied Options Indexes FollowSymLinks AllowOverride None </Directory>
参考:http://sjpsega.iteye.com/blog/1507439
原文链接:https://www.f2er.com/centos/376225.html