首页 > 代码库 > centos6.8配置FTP普通用户除了家目录外还能访问其他目录

centos6.8配置FTP普通用户除了家目录外还能访问其他目录

今天有个需求,使用ftp服务搭建一个文件共享服务器,每个普通用户除了能访问自己家目录的东西,还能访问一个公共的目录。配置步骤如下:

环境如下:

技术分享

创建用户并配置密码(使用默认家目录/home)

useradd liuhuihuang

passwd liuhuihuang

 

安装ftp服务

yum install vsftpd -y

cd /etc/vsftpd/ && touch chroot_list

编辑配置文件vsftp.conf

在最后加入以下配置

chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
chroot_local_user=NO

加入普通用户至chroot_list,每一行一个名字,如下:

技术分享

重启vsftp服务即可 /etc/init.d/vsftpd restart

在服务器上创建一个共享目录

mkdir -p /data/share && chmod -R 777 /data/share

在/home/liuhuihuang目录创建一个share目录(目录可任意取名字)

在/home/wangchenyan目录创建一个share目录

使用mount挂载映射。

# /bin/mount --bind /data/share /home/liuhuihuang/share
# /bin/mount --bind /data/share /home/wangchenyan/share

 

centos6.8配置FTP普通用户除了家目录外还能访问其他目录