apacheftp服务器性能,Apache FtpServer

寇鸿
2023-12-01

Apache FtpServer介绍:

Apache FtpServer是一个基于Apache MINA(一个高性能的Java异步并发网络通讯框架)开发的FTP 服务器。 既可以嵌到Java应用中使用,也可以做为Windows服务或Unix/Linux Daemon单独运行。

下载: http://mina.apache.org/ftpserver/downloads.html

下载: http://mirror.bit.edu.cn/apache/mina/ftpserver/1.0.6/dist/ftpserver-1.0.6.zip

配置文件:ftpd-typical.xml

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="

http://mina.apache.org/ftpserver/spring/v1 http://mina.apache.org/ftpserver/ftpserver-1.0.xsd

"

id="myServer">

配置文件: users.properties

#密码为空

ftpserver.user.anonymous.userpassword=

#主目录

ftpserver.user.anonymous.homedirectory=./res/home

#当前用户可用

ftpserver.user.anonymous.enableflag=true

#具有上传权限

ftpserver.user.anonymous.writepermission=false

#最大登陆用户数为20

ftpserver.user.anonymous.maxloginnumber=20

#同IP登陆用户数为2

ftpserver.user.anonymous.maxloginperip=2

#空闲时间为300秒

ftpserver.user.anonymous.idletime=300

#上传速率限制为48字节每秒

ftpserver.user.anonymous.uploadrate=4800

#下载速率限制为48字节每秒

ftpserver.user.anonymous.downloadrate=4800

启动FTPServer:

%FTP_HOME/%bin/ftpd.bat res/conf/ftpd-typical.xml

 类似资料: