在平常搭建环境中,最容易遗忘iptables和selinux,以至于环境测试失败,相信有很多和我一样的遭遇的吧。好了,本文就说下这两个的日常用法。



1、清空防火墙的命令:

[root@localhost ~]# iptables -F



2、selinux的用法:

(1)永久生效---需要重启服务器

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

SELINUX=enforcing/disabled         *开启或关闭*

[root@localhost ~]# shutdown -r now

(2)临时生效---使用setenforce命令

[root@localhost ~]# setenforce 1    *开启selinux*

[root@localhost ~]# setenforce 0    *关闭selinux*

[root@localhost ~]# getenforce      *查看当前状态*