centos下关闭防火墙和Selinux

Centos6.5

关闭selinux:

永久有效:vim /etc/sysconfig/selinux
将文本中的SELINUX=enforcing,改为SELINUX=disabled。然后重启网卡

即时有效:setenforce 0
查看状态:getenforce

关闭防火墙:

永久性生效:chkconfig iptables off ,然后重启网卡

即时生效:service iptables stop

查看防火墙状态:service iptables status (或者iptables -L)

检查防火墙是否开机自启:chkconfig iptables --list (--list这是两个横线)

Centos7

关闭selinux:

永久关闭:vim /etc/selinux/config
将文本中的SELINUX=enforcing,改为SELINUX=disabled。然后重启网卡

即时有效:setenforce 0

关闭防火墙:

临时关闭:systemctl stop firewalld

防火墙开机关闭:systemctl disable firewalld

开机启动:systemctl enable firewalld

查看状态:systemctl status firewalld

获取firewalld状态:firewall-cmd --state

其他命令:

重启网卡:systemctl restart network

修改主机名命令:hostnamectl set-hostname master

hadoop的安全模式关了命令:hadoop dfsadmin -safemode leave


首先看是否设置static如果设置了
输入命令ip addr查看里边是否有两个ip地址,如果有

systemctl stop NetworkManagersystemctl
systemctl disable NetworkManagersystemctl
systemctl restart network

然后在查看ip addrifconfig是否一致

备注:如果遇到其它问题,你有更好的解决方法,又或者哪里有错误,都可以留言,我们一起探讨哦!!!,看到这了,就喜欢或者留个言吧 (* ̄︶ ̄)。

你可能感兴趣的:(centos下关闭防火墙和Selinux)