热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

关闭IPtables和selinux

iptables-L查看是否有相应的iptables规则iptables-F关闭iptables规则iptables-tnat-F关闭selinuxgetenforce--查看se

iptables  -L查看是否有相应的iptables规则

iptables  -F关闭iptables规则

iptables  -t  nat  -F

 

关闭selinux

getenforce  --查看selinux是否开启

临时关闭:

[root@localhost ~]# getenforce
Enforcing

[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive

 

永久关闭:

[root@localhost ~]# vim /etc/sysconfig/selinux

SELINUX=enforcing 改为 SELINUX=disabled

重启服务reboot

转:https://www.cnblogs.com/elian91/p/11217679.html



推荐阅读
author-avatar
Gvyi_262
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有