禁用seLinux
查看状态
1 | [root@localhost ~]# sestatus |
暂时关闭
暂时关闭,重启失效
1 | [root@localhost ~]# setenforce 0 |
永久关闭
设置SELINUX=disabled
,需要重启。
1 | [root@localhost ~]# cat /etc/selinux/config |
关闭防火墙
CentOS 7
查看状态
1 | [root@localhost ~]# firewall-cmd --state |
或者1
[root@localhost ~]# systemctl status firewalld
暂时关闭
1 | [root@localhost ~]# systemctl stop firewalld.service |
永久关闭
1 | 禁止firewall开机启动 |
CentOS 6
查看状态
1 | [root@localhost ~]# service iptables status |
暂时关闭
1 | [root@localhost ~]# service iptables stop |
永久关闭
1 | [root@localhost ~]# chkconfig iptables off |