Dec
13
Fedora Core6でvsftpd のログイン失敗
環境
内容
原因
解決
Fedora Core6
内容
Fedora Core6をインストール後FFFTPでログインできない
原因
ファイアウォールとSELinuxが有効になっていた為
解決
別でファイアウォールを設定するためファイアウォールとSELinuxを無効にする
ファイアウォールの停止
[root@restrat ~]# /etc/rc.d/init.d/iptables stop
[root@restrat ~]# chkconfig iptables off
[root@restrat ~]# /etc/rc.d/init.d/ip6tables stop
[root@restrat ~]# chkconfig ip6tables off
SELinuxを無効にする
[root@restrat ~]# setenforce 0
[root@restrat ~]# getenforce
Permissive
[root@restrat ~]# vi /etc/sysconfig/selinux
SELINUX=disabled ← enforcingをdisabledに変更