ftp环境的搭建
关于ftp的安装,有多种方式,最简单的就是利用yum来安装了。
yum install vsftpd -y
一般默认都是可以匿名登录的,只要在配置文件中的的anonymous_enable=YES是开启的就行。
基于在mysql上用虚拟用户访问ftp:
因为在pam模块中默认不提供mysql模块,所以要自己动手安装,模块名是pam_mysql-0.7RC1(很久没更新了,呵呵)
在编译安装这个模块的时候需要指定mysql的位置,步骤如下:
tar xf pam_mysql-0.7RC1.tar.gz
cd pam_mysql-0.7RC1
./configure --with-mysql=/usr/locsl/mysql(注意,路径为你的mysql安装所在路径)
然后make & make install即可。
连接到mysql上,创建数据库,create datebase vsftpd(名字可以自己拟定)
创建表create table users
id int not null auto_increment primary key
name char not null
insert into users (name,password) values ('ftpuser1',password('123456')),('ftpuser2',password('123456'));
grant select on vsftpd.* to vsftpd@localhost identified by '123456'
grant select on vsftpd.* to vsftpd@localhost identified by '123456'
为vsftpd pam准备一个认证文件
vim /etc/pam/vsftpd.my
为了让不同的虚拟用户有不同的访问权限,可以在user_configure_dir说指定的文件里定义
比如文件目录为/etc/vsftpd/virusers
在这个目录里就可以创建虚拟用户名相同的文件名,在文件里添加可执行权限:
如:anon_upload_enable=YES
anon_mkdir_write_enable=no
anon_other_write_enable=yes
本文出自 “刘水鹏CTO” 博客,请务必保留此出处http://string.blog.51cto.com/4375751/832286