FlashFXP连接虚拟机中centos

1,centos6.4中安装了ftp服务。

2,关闭防火墙  service iptables stop ;        chkconfig  iptables off   ;   service iptables restart

3,修改selinux     

getsebool -a | grep ftp

allow_ftpd_anon_write --> off
allow_ftpd_full_access --> off
allow_ftpd_use_cifs --> off
allow_ftpd_use_nfs --> off
ftp_home_dir --> off
ftpd_connect_db --> off
ftpd_use_passive_mode --> off
httpd_enable_ftp_server --> off
tftp_anon_write --> off

          改为开启状态:     setsebool  -P  allow_ftpd_full_access 1  ;

   setsebool  -P  ftp_home_dir 1 ;

   service   vsftpd   restart  ;

4, 使用FlashFXP进行连接测试。

你可能感兴趣的:(linux)