ProFtpd架设指南

安装proftpd

#aptitude install proftpd-mod-ldap

这个proftpd里面已经集成了ldap模块,不需要自己动手把ldap模块编译进去,非常方便。

我们看/etc/proftpd,里面有ldap.conf,这个不要管,不影响我们的使用的。

Modules.conf里面为以下去掉注释,启用mod_ldap模块。

#vim /etc/proftpd/modules.conf

 

install proftpd-mod-ldap to use this

loadModule mod_ldap.c

 

编辑设定档proftpd.conf,添加

include /etc/proftpd/modules.conf

include /etc/proftpd/ldap.conf

ServerName                      "data"

#ServerType                     inetd   #注释掉这行

DefaultRoot                    /srv      #指定FTP显示的根目录

剩下的工作,主要是对登录权限和查看修改权限进行限制,在此不赘述。

如果在sudo /etc/init.d/proftpd restart时,报错:

"ProFTPd warning: cannot start neither in standalone nor in inetd/xinetd mode. Check your configuration.

 

vim /etc/init.d/proftpd

 

# Defaults

RUN="yes" 

# RUN的值赋YES,原值为NO

你可能感兴趣的:(工作,include)