红联Linux门户
Linux帮助

linux中添加ftp用户,并设置相应的权限

发布时间:2015-09-22 10:30:49来源:linux网站作者:一夜长风

centos中vsftp的安装:

1、不知道是否安装了vsftp服务可以运行 chkconfig --list  查看所有已安装的服务

2、在centos中yum工具是免费提供使用在系统内置的,安装yum源软件在有网络的情况下只需要运行 yum -y install vsftpd

3、启动和自启动配置:运行 chkconfig --level 2345 vsftpd on

4、服务管理:service vsftpd start/stop/restart/status


在linux中添加ftp用户,并设置相应的权限,操作步骤如下:

1、环境:ftp为vsftp。被限制用户名为test。被限制路径为/home/test

2、建用户:在root用户下:

useradd -d /home/test test //增加用户test,并制定test用户的主目录为/home/test
passwd test //为test设置密码

3、更改用户相应的权限设置:

usermod -s /sbin/nologin test //限定用户test不能telnet,只能ftp
usermod -s /sbin/bash test //用户test恢复正常
usermod -d /test test //更改用户test的主目录为/test

4、限制用户只能访问/home/test,不能访问其他路径

修改/etc/vsftpd/vsftpd.conf如下:

chroot_list_enable=YES //限制访问自身目录
# (default follows)
chroot_list_file=/etc/vsftpd/vsftpd.chroot_list

编辑 vsftpd.chroot_list文件,将受限制的用户添加进去,每个用户名一行

改完配置文件,不要忘记重启vsFTPd服务器
[root@linuxsir001 root]# /etc/init.d/vsftpd restart

5、如果需要允许用户修改密码,但是又没有telnet登录系统的权限:

usermod -s /usr/bin/passwd test //用户telnet后将直接进入改密界面


完整示例:

网站目录:/alidata/www/ganji/

要求:建立一个ftp账号ganjier只能作为ftp用户登陆,锁定在ganji目录下,为ganjier分配用户组www

useradd  -d  /alidata/www/ganji  -s  /sbin/nologin  ganjier

passwd  ganjier             //设置密码

gpasswd  -a  ganjier  www          //将ganjier添加到www用户组

chown  -R  www:www  ganji/      //递归修改ganji目录所有者所属组为www

chmod -R  775  ganji/                  //递归修改ganji目录所有者和所属组权限为775


Linux服务器中限制FTP用户访问方式:http://www.linuxdiyf.com/linux/10500.html

ubuntu wordpress插件上传ftp用户密码设置:http://www.linuxdiyf.com/linux/14094.html

Ubuntu下架设FTP服务器:http://www.linuxdiyf.com/linux/13393.html

Ubuntu 12.04搭建tftp服务器的安装、设置、调试:http://www.linuxdiyf.com/linux/10733.html

Ubuntu 14.04下FTP服务器的搭建:http://www.linuxdiyf.com/linux/10217.html