Fedora关闭SELINUX、iptables
Fedora16环境,我在iscsi target配置好后,需要重启 #/etc/init.d/tgtd restart,但是提示selinux阻碍了它。于是要关闭SELINUX。
关闭SELINUX:
修改/etc/selinux/config文件中的SELINUX="" 为 disabled ,然后重启。
如果不想重启系统,使用命令#setenforce 0;
关闭iptables:
#service iptables stop(临时关闭。下次重启系统就不管用了)
#chkconfig iptables off.(永久管用)
另外,直接#setup里设置iptables也永久管用。
by whatcanyou.转载请注明出处。