初学linux一般需要关闭下面几个东西
1 防火墙
/etc/init.d/iptables stop
开机就关闭chkconfig iptables off
2 临时关闭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
本文出自 “立即行动” 博客,请务必保留此出处http://lijixingdong.blog.51cto.com/633033/1795525
原文地址:http://lijixingdong.blog.51cto.com/633033/1795525