前几天,因项目需要安装FTP,现把日志记录一下:
一、安装:
yum install vsftpd -y
启动:
systemctl start vsftpd.service
自启动:
systemctl enable vsftpd.service
二、配置
vim /etc/vsftpd/vsftpd.conf
anonymous_enable=NO #匿名不访问
chroot_list_enable=YES
allow_writeable_chroot=YES
chroot_list_file=/etc/vsftpd/chroot_list
三、建立FTP用户
useradd -d /www/wwwroot -s /sbin/nologin ftpuser
passwd ftpuser
#指定站点目录的话,把目录权限更改一下
四、用户
vim /etc/vsftpd/chroot_list
ftpuser #一行一个用户
systemctl restart vsftpd.service