搭建ftp服务器

配置vsftpd
1.配置/etc/vsftpd/vsftpd.conf
anonymous_enable=YES
local_enable=YES
write_enable=YES
anon_umask=022
local_umask=022
anon_root=/home/norealftp
dirmessage_enable=YES
connect_from_port_20=YES
xferlog_enable=YES
xferlog_file=/var/log/vsftpd.log
xferlog_std_format=YES
dual_log_enable=yes
vsftpd_log_file=/var/log/vsftpd.log
listen=YES
pam_service_name=vsftpd
guest_enable=YES
guest_username=norealftp
user_config_dir=/etc/vsftpd/user_config_dir
chroot_local_user=YES
listen_port=21
userlist_deny=NO
userlist_file=/etc/vsftpd/user_list
pam_service_name=vsftpd
userlist_enable=YES
2.生成数据库文件 /etc/vsftpd/login_user.txt
添加用户名和密码
hlw(用户名1)
topwalk(密码)
hlw1(用户2)
topwalk(密码)

db_load -T -t hash -f /etc/vsftpd/login_user.txt /etc/vsftpd/vsftpd_login.db
chmod 600 /etc/vsftpd/vsftpd_login.db
3.配置/etc/pam.d/vsftpd
auth required /lib64/security/pam_userdb.so db=/etc/vsftpd/vsftpd_login
account required /lib64/security/pam_userdb.so db=/etc/vsftpd/vsftpd_login
4.创建用户并指定目录
useradd -d /home/hlw hlw
passwd hlw
5.配置每个用户的权限
/etc/vsftpd/user_config_dir/用户名(hlw)(管理员权限)
   anon_world_readable_only=NO  
   anon_upload_enable=YES  
   anon_mkdir_write_enable=YES  
   anon_other_write_enable=YES  
6.把用户添加到user_lis

你可能感兴趣的:(搭建ftp服务器)