码迷,mamicode.com
首页 > 其他好文 > 详细

本地filezilla&服务器vsftp搭配使用

时间:2014-06-22 21:47:40      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:linux   ubuntu   filezilla   vsftp   ftp   


环境:本地ubuntu系统&服务器ubuntu系统

本地安装filezilla 

apt-get install filezilla '安装filezilla
filezilla ‘运行

服务器安装vsftp 参照 阿里云安装vsftp

apt-get install vsftpd -y   ’安装vsftp

添加ftp帐号和目录

先检查一下nologin的位置,通常在/usr/sbin/nologin或者/sbin/nologin下。

使用下面的命令创建帐户,该命令指定了/alidata/www/wwwroot为用户pwftp的家目录,您可以自己定义帐户名和目录


useradd -d /alidata/www/wwwroot -s /sbin/nologin test  ‘添加ftp帐号,加粗为虚拟目录,假设账户为test

修改该帐户密码:

passwd pwftp   ’创建密码
123456 ’假设为密码

将配置文件中”anonymous_enable=YES “改为 “anonymous_enable=NO”
取消如下配置前的注释符号:
local_enable=YES
write_enable=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list

保存退出


编辑/etc/vsftpd.chroot_list文件,将ftp的帐户名添加进去,保存退出

vi /etc/vsftpd.chroot_list  '此文件默认是没有的,新创建的
 test 123456 '直接将账户和密码放入   

修改shell配置,vi编辑/etc/shells,如果该文件里没有/usr/sbin/nologin或者/sbin/nologin(具体看当前系统配置)则追加进去

vi /etc/shells
/usr/sbin/nologin ‘直接添加进去


重启vsftp服务并测试登录

service vsftpd restart

本地用filezilla登录ftp,报错

500 OOPS: could not read chroot() list file:/etc/vsftpd.chroot_list
Error:    Critical error
Error:    Could not connect to server</span>

解决:

chmod a-w /alidata/www/wwwroot   ‘去除根目录的写权限

重新登录,登录成功,可看到文件。




本地filezilla&服务器vsftp搭配使用,布布扣,bubuko.com

本地filezilla&服务器vsftp搭配使用

标签:linux   ubuntu   filezilla   vsftp   ftp   

原文地址:http://blog.csdn.net/u011102951/article/details/32094847

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!