0

当 selinux 被禁用时,我可以从我的 amazon ec2 centos 实例上的 nfs 安装卷访问 html 页面。但是当我启用它时,我得到“无法连接”错误。我已启用 httpd_use_nfs 和其他相关的布尔策略,但仍然收到相同的错误。请帮我解决问题。我需要 apache 才能使用 SELinux On 访问我的网页。

4

1 回答 1

0

如何检查问题是否是由 selinux 产生的:

setenforce 0 # if it works after this command : Selinux is the problem
setenforce 1 # re-enable selinux because you are not crazy

selinux的问题如何解决:

# install setroubleshoot (here for centos7)
yum install setroubleshoot
#audit
tail -f /var/log/messages | grep sealert 

阅读最后一条消息,您可以执行建议的命令来解决您的问题。

一般来说,之后,问题就解决了。

SeLinux 很简单...有时... ;-)

于 2017-04-13T11:53:11.297 回答