初学linux一般需要关闭下面几个东西1 防火墙 /etc/init.d/iptables stop 开机就关闭chkconfig iptables off2 临时关闭SELinux getenforce 查是SELinux状态 setenforce 0 设置SELinux 成为permissive模式 如果setenforce 1则设置为SELinux成为enforcing模式3 修改配置文件需要重启机启 查看并去掉空格和说明文字 cat /etc/selinux/config | grep -Ev "^#|^$" 修改SELINUX状态 sed -i "s%enforce%disable%g" /etc/selinux/config 查看是否修改 cat /etc/selinux/config | grep -Ev "^#|^$"4 重启服务器 init 6 或 shutdown -r now