Linux localhost.localdomain 3.10.0-693.el7.x86_64 #1 SMP Tue Aug 22 21:09:27 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
安装
yum install vsftpd
配置
- 配置文件:
/etc/vsftpd/vsftpd.conf
# 不允许匿名访问
#anonymous_enable=YES
# 设置写权限
write_enable=YES
# 限定访问目录
chroot_local_user=YES
chroot_list_file=/etc/vsftpd/chroot_list
local_root=/var/ftp
- 添加
chroot_list
文件
touch /etc/vsftpd/chroot_list
- 启动 vsftpd 服务
systemctl start vsftpd
- 解决 553 Could not create file
# 修改 /etc/sysconfig/selinux
SELINUX=disable
# 执行
setsebool -P allow_ftpd_full_access 1
网友评论