我是靠谱客的博主 怕黑手链,最近开发中收集的这篇文章主要介绍centos6.6关闭防火墙和selinux,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

centos6.6关闭防火墙和selinux

1、查看防火墙状态

[root@A ~]#service iptables status

表格:filter

Chain INPUT (policy ACCEPT)

num  target     prot opt source               destination         

1    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED 

2    ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0           

3    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           

4    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:22 

5    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibited 


Chain FORWARD (policy ACCEPT)

num  target     prot opt source               destination         

1    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibited 


Chain OUTPUT (policy ACCEPT)

num  target     prot opt source               destination         

2、关闭防火墙状态

[root@A ~]# service iptables stop

iptables:将链设置为政策 ACCEPT:filter [确定]

iptables:清除防火墙规则:[确定]

iptables:正在卸载模块:[确定]

[root@A ~]# service iptables status

iptables:未运行防火墙。

[root@A ~]# chkconfig iptables off   //永久关闭防火墙。


3、查看SElinux状态

[root@kgw ~]# /usr/sbin/sestatus -v

SELinux status:                 enabled              //表示SElinux已经启动

SELinuxfs mount:                /selinux

Current mode:                   enforcing

Mode from config file:          enforcing

Policy version:                 24

Policy from config file:        targeted


4、关闭SElinux 修改启动配置文件

vi /etc/selinux/config

SELINUX=enforcing改为SELINUX=disabled

reboot重启系统

转载于:https://blog.51cto.com/20161215/1782517

最后

以上就是怕黑手链为你收集整理的centos6.6关闭防火墙和selinux的全部内容,希望文章能够帮你解决centos6.6关闭防火墙和selinux所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部