搭建简单FTP
作者:互联网
搭建简单FTP
环境
- CentOS 7
安装
yum install vsftpd
- 修改配置文件, 在
/etc/vsftpd/vsftpd.conf
中添加allow_writeable_chroot=YES
,local_root=/home/ftpuser/share
,chroot_local_user=YES
- 创建ftpuser,
useradd ftpuser
,echo yourpass | passwd --stdin ftpuser
启动
systemctl start vsftpd
标签:FTP,chroot,ftpuser,vsftpd,简单,YES,local,搭建 来源: https://www.cnblogs.com/megachen/p/10544964.html