Centos 7安装centreon后无法进行WEB安装解决

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

相关文章

Centos下搭建性能监控Spotlight
CentOS 6.3下Strongswan搭建IPSec VPN
在CentOS6.5上安装Skype与QQ
阿里云基于centos6.5主机VPN配置
CentOS 6.3下配置multipah
CentOS安装、配置APR和tomcat-native