前言
ftp是一个比较常见的与服务器进行文件传输的服务,在笔者的日常工作中也会经常用到ftp服务,本文是笔者在CentOS服务器快速搭建一个ftp服务的过程记录。
步骤
1、安装vsftpd,修改配置文件
代码语言:javascript复制[root@iZo7e61fz42ik0Z etc]# yum -y install vsftpd
[root@iZo7e61fz42ik0Z etc]# vim /etc/vsftpd/vsftpd.conf
……
anonymous_enable=NO # 禁止匿名登录
ascii_upload_enable=YES
ascii_download_enable=YES # ASCII模式开启
chroot_local_user=YES # 限制主目录
user_config_dir=/etc/vsftpd/userconfig # 用户目录配置文件目录
allow_writeable_chroot=YES # 允许可写
……
2、创建用户
代码语言:javascript复制[root@iZo7e61fz42ik0Z ~]# useradd -s /sbin/nologin test
[root@iZo7e61fz42ik0Z ~]# passwd test
3、创建用户目录配置
代码语言:javascript复制[root@iZo7e61fz42ik0Z ~]# mkdir /etc/vsftpd/userconfig
[root@iZo7e61fz42ik0Z ~]# cd /etc/vsftpd/userconfig
[root@iZo7e61fz42ik0Z userconfig]# vim test
local_root=/var/ftp/test
4、创建目录、设置权限
代码语言:javascript复制[root@iZo7e61fz42ik0Z userconfig]# mkdir /var/ftp/test
[root@iZo7e61fz42ik0Z userconfig]# setfacl -m u:test:rwx /var/ftp/test
[root@iZo7e61fz42ik0Z userconfig]# getfacl /var/ftp/test
getfacl: Removing leading '/' from absolute path names
# file: var/ftp/test
# owner: root
# group: root
user::rwx
user:test:rwx
group::r-x
mask::rwx
other::r-x
[root@iZo7e61fz42ik0Z userconfig]# cd /var/ftp/test
[root@iZo7e61fz42ik0Z test]# echo hello,ftp! > test.txt
5、启动服务
代码语言:javascript复制[root@iZo7e61fz42ik0Z userconfig]# systemctl start vsftpd
6、filezilla客户端连接
上传文件操作