小纪的程序员生活!

Linux 中SeLinux 的禁用方式

前几天在迁移Apache Web Server时,发现其中使用反向代理的页面不能显示。Apache配置文件中反向代理的配置如下:

    ProxyRequests Off
    ProxyPass /homepage/ http://192.168.120.35:9902/homepage/
    ProxyPassReverse /homepage/ http://192.168.120.35:9902/homepage/


经网上查看资料,发现是SELinux在作怪,现在记录下来,以后继续完善
1、临时禁用SELinux:
root@server# setenforce 0
    
这样重启服务器之后,还是会启动SELinux,
2、永久禁用:
打开服务器上的SELinux配置文件,默认为:/etc/selinux/config,内容如下:

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#       enforcing - SELinux security policy is enforced.
#       permissive - SELinux prints warnings instead of enforcing.
#       disabled - SELinux is fully disabled.
SELINUX=enforcing
# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted

将上面的
SELINUX=enforcing 改为:SELINUX=disable  禁用SeLinux

posted on 2010-04-29 13:17 纪敏强 阅读(2384) 评论(0)  编辑  收藏 所属分类: Linux


只有注册用户登录后才能发表评论。


网站导航:
 

My Links

Blog Stats

常用链接

留言簿

随笔分类

随笔档案

文章分类

搜索

最新评论

阅读排行榜

评论排行榜