1、有关vsftp配置及用户权限设置,请参考:
http://blog.sina.com.cn/s/blog_3edc5e2e0102vzv8.html
2、需求:公司另一部门要求单独建一目录,来存在部门自己的文档。
3、操作步骤:
1 cd /etc/vsftpd/ 2 vim vuser_passwd.txt 3 ##创建用户名密码,写入两行(用户名和密码) 4 ##注意:在写txt配置文件时,不能有注释说明类的内容,默认会逐行去读取 5 6 rm -rfv vuser_passwd.db ##删除原有的数据 7 db_load -T -t hash -f /etc/vsftpd/vuser_passwd.txt /etc/vsftpd/vuser_passwd.db ##重新生成登录数据库 8 cd /etc/vsftpd/vuser_conf 9 ##新建用户名配置文件10 vim jiaoyu11 local_root=/app/education12 write_enable=YES13 anon_umask=02214 anon_world_readable_only=NO15 anon_upload_enable=YES16 anon_mkdir_write_enable=YES17 anon_other_write_enable=YES18 19 mkdir /app/education20 chmod 777 /app/education21 22 /etc/init.d/vsftpd restart23 24 ##ftp工具登录即可。