1 永久方法 – 須要重啓服務器html
修改/etc/selinux/config文件中設置SELINUX=disabled ,而後重啓服務器。linux
2 臨時方法 – 設置系統參數centos
使用命令setenforce 0服務器
附:
setenforce 1 設置SELinux 成爲enforcing模式
setenforce 0 設置SELinux 成爲permissive模式post
謝謝!url
centos6 關閉防火牆spa
service iptables stop 臨時關閉code
chkconfig iptables off 禁止防火牆開機自啓htm
謝謝blog
CentOS 7.0默認使用的是firewall做爲防火牆,使用iptables必須從新設置一下
一、直接關閉防火牆
firewall-cmd --state #查看默認防火牆狀態(關閉後顯示notrunning,開啓後顯示running)
systemctl stop firewalld.service #中止firewall
systemctl disable firewalld.service #禁止firewall開機啓動
最後重啓系統使設置生效便可。
謝謝