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

前端之家收集整理的这篇文章主要介绍了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

原文链接:https://www.f2er.com/centos/376225.html

猜你在找的CentOS相关文章