欢迎光临
我们一直在努力

proftp+mysql认证实现-网管专栏,FTP服务

建站超值云服务器,限时71元/月

1. 安装 redhat 7.2 或者solaris8

  注:solaris8要求自己有c编译器等工具,我们这里不提供安装方法,具体可以取www.sunfreeware.com下载gcc包安装。

2. 停止缺省的 wu-ftpd服务器

  在 ntsysv 里将 wu-ftpd 前的 * 去了,然后保存,然后将 /etc/rc.d/init.d 目录下的 wu-ftpd 的启动脚本删除了。solaris可以去/etc/services和/etc/inetd.conf注销。不过最好是不要安装那个东西,它的安全问题很多!

3.安装 mysql

  在 redhat 的光盘上有的,将 mysql 的程序和库都装上。(如果安装 redhat 时已经 选装了这步就不用了,当然,如果是solaris的话就没什么用了,用源代码包自己编译吧)


  rpm -ivh mysql-3.23.41-1.i386.rpm 
  rpm -ivh mysql-devel-3.23.41-1.i386.rpm 
  rpm -ivh mysql-server-3.23.41-1.i386.rpm 

  也可以源代码安装


  tar –zxvf mysql-3.23.53.tar.gz
  cd mysql-3.23.53
  ./configure –prefix=/usr/local/mysql
  make 
  make install
  cd /usr/local/mysql/bin
  ./ mysql_install_db  #初始化
  ./safe_mysqld –uroot &  #启动mysql

4 下载 proftpd-1.2.4.tar.gz

  不知道哪儿有下载?faint,在搜索引擎上用 “proftpd-1.2.4.tar.gz 下载” 在找, 至少命中100个可以下载的站点

5.准备开始安装 proftpd

  为 proftpd 建立专用的用户;加一个ftpuser组 id为65533;加一个ftpuser用户,用户id为65533,组id为65533

6.在mysql下为 proftpd 建数据库和表


  #mysql -p 
  password:****** (自己的口令自己知道) 

  然后用下列命令,直接拷进去吧。


  create database proftpftp; 
  use proftp; 
  create table users ( 
    userid varchar(50) not null, # 用户名 
    uid int unsigned, # 用户id 
    gid int unsigned, # 组id 
    passwd varchar(50) not null, # 密码 
    shell varchar(100), # shell 
    homedir varchar(100), # 用户目录 
    count int unsigned not null # 登录计数 
  ) comment = 用户表;   
  #这个地方可能没法输入汉字,可改成英文!
  create table groups ( 
    groupname varchar(50) not null, # 组名 
    gid int not null, # 组id 
    members varchar(50) # 组成员 
  ) comment = 组表;  
  #把“组表”改为英文吧

7. 设置权限

  在 mysql 下 grant 一个可以存取这个表的用户(要 select, update 权限)


  grant select,update,delete,insert on proftp.* 
  to yourmysqlid@”%” identified by “passwd”; 

8. tar -zxvf proftpd-1.2.4.tar.gz


  cd proftpd-1.2.4

9.


  ./configure --with-modules=mod_sql:mod_sql_mysql
  --with-includes=/usr/include  
  --with-libraries=/usr/lib/mysql 

  (这里的 mysql 是用 rpm 安装时的库路径,你可以在根下用 locate 命令找到自己机 器上 mysql 库的路径)

  如果是源代码安装的,一定要注意了,


  ./configure --prefix=/usr/local/proftpd 
    --with-modules=mod_sql:mod_sql_mysql  
     --with-includes=/usr/local/mysql/include  
    --with-libraries=/usr/local/mysql/lib/mysql

  这个地方也要多多注意,我就是这里出了错误的。

10. make 并 make install

11.编辑 /usr/local/etc/proftpd.conf

  加上下面的话(须修改一下再加)


  #先改其它参数,文件本来就有注解的,然后加上下面的
  #用户不能访问比自己登录目录更高级别的目录 
  defaultroot ~ 
  #数据库情况,刚刚的grant时要是用了ip这里要写 proftp@xxx.xxx.xxx.xxx
  #用机器名也一样,只有grant时用localhost时可以省略@ xxx.xxx.xxx.xxx 
  sqlconnectinfo proftp 用户名 口令 
  #密码方式为明文,可以为空
  #(要是想用 md5 也可以,手册上讲了好多种加密支持) 
  sqlauthtypes plaintext empty 
  #是否不允其它认证方式
  #(注意,其它文章里的这个参数是讲错的,小乐就上当过。) 
  sqlauthoritative on 
  #不用讲了吧 
  sqldefaultgid 65533 
  sqldefaultuid 65533 
  #用户认证 
  sqldoauth on 
  #组有效 
  sqldogroupauth on 
  #下面的就不用讲了吧,一眼就明白了, 根据你数据表情况写 
  sqlusertable users 
  sqlusernamefield userid 
  sqluidfield uid 
  sqlgidfield gid 
  sqlpasswordfield passwd 
  sqlshellfield shell 
  sqlhomedirfield homedir 
  sqllogincountfield count 
  sqlgrouptable groups 
  sqlgroupgidfield gid 
  sqlgroupmembersfield members 
  sqlgroupnamefield groupname 
  sqlhomedirondemand on 12cp
    /usr/local/mysql/lib/mysql/libmysqlclient.so.10 /usr/lib
   (重要,我是花了好久时间才弄明白的,否则启动不了!!!)

13.测试

  先在 mysql 里加用户组,用户,密码留空也可,反正是测试 ,运行 /usr/local/proftpd/sbin/proftpd ftp localhost

  用新加的用户一试,哈哈是不是成了。

14.题外话

  要是想把 proftpd 放在 ntsysv 里边控制,呵呵加下面的脚本吧。

  建立 /etc/rc.d/init.d/proftpd 内容是:


  #!/bin/sh  
  case "$1" in 
  start) 
  echo "starting professional ftp daemon: [ok]" 
  /usr/local/proftpd/sbin/proftpd -d 1 
  touch /var/lock/subsys/proftpd 
  ;; 
  stop) 
  echo -n "restarting professional ftp daemon: all proftpd process " 
  rm -f /var/lock/subsys/proftpd 
  killall proftpd 
  ;; 
  *) 
  echo "usage: $0 { start | stop }" 
  ;; 
  esac 
  exit 0 

15.题外话二

  可以用 /etc/rc.d/init.d/proftpd stop 来杀所有 proftpd 守护进程,用 /etc/rc.d/init.d/proftpd start 启动一个进程,要是你不小心启运了两次就用一次 stop 就可以了

16.修改说明

  由于我需要在linux和solris下做ftp,找了很多文章,他们基本都是转载,可能由于原作者用的版本和操作系统的不同,很多地方写的不是很明白,我干脆把这片比较完整的文章修改一下了发表,希望原作者不要介意。很多内容我并没修改,我只是加了一些注意的地方。在此,让我们感谢小乐堡主,是他给我们提供了这么好一片技术文章! 我的系统是redhat8.0和solaris8.0 for sparc版本。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » proftp+mysql认证实现-网管专栏,FTP服务
分享到: 更多 (0)