首页 > 代码库 > 关闭防火墙iptables
关闭防火墙iptables
关闭防火墙iptables
1.临时关闭iptables
/etc/init.d/iptables stop
iptables: Setting chains to policy ACCEPT:filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
/etc/init.d/iptables stop(一般运行两次)
查询防火墙是否正在运行---状态
/etc/init.d/iptables status
iptables: Firewall is not running.
reboot 重启服务器
2.永久关闭
chkconfig iptables off
永久 --- 让防火墙在开机启动的时候也关闭
开机自动 开机的时候自动运行 iptables
检查结果
chkconfig |grep ipt
iptables 0:off 1:off 2:off 3:off4:off 5:off 6:off
usage 说明,使用说明
3.su与su- 的区别
su命令用于切换当前用户身份到其他用户身份,变更时须输入所要变更的用户帐号与密码
.su的作用是变更为其它使用者的身份,需要键入该使用者的密码(超级用户除外)
su命令和su -命令最大的本质区别就是:
su只是切换了root身份,但Shell环境仍然是普通用户的Shell;
而su-连用户和Shell环境一起切换成root身份了。只有切换了Shell环境才不会出现PATH环境变量错误。su切换成root用户以后,pwd一下,发现工作目录仍然是普通用户的工作目录;而用su -命令切换以后,工作目录变成root的工作目录了。用echo $PATH命令看一下su和su -以后的环境变量有何不同。以此类推,要从当前用户切换到其它用户也一样,应该使用su -命令
本文出自 “heyong” 博客,请务必保留此出处http://heyong.blog.51cto.com/13121269/1954578
关闭防火墙iptables