Skip to content

meethigher/ftp-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image-20240421225808979

Introduction

ftp-server is an FTP service implemented in Java language based on Apache FtpServer 1.2.0 Release — Apache MINA.

it's very lightweight and easy to use.

Document

download release, then run

java -jar ftp-server.jar

you can configure ftp by configuring server.properties.

port=201
idleSeconds=501
activeLocalPort=202
passivePorts=30000-30005
web.enable=true
web.port=8080
web.username=admin
web.password=admin

you can perform user management and authorization in the users folder, the configuration file is suffixed with .properties

enabled=true
name=ftpadmin
password=ftpadmin
homeDir=C:/Users/meethigher/Desktop
# indicates the file path with write permission. if it is /ccc-test, it means that there is write permission under the ccc-test folder.
write=/ccc-test
maxConcurrentLogins=5
maxConcurrentLoginsPerIP=1
# bytes/second
maxDownloadRate=1024000
# bytes/second
maxUploadRate=1024000

About

an FTP service implemented in Java language based on Apache FtpServer 1.2.0 Release — Apache MINA.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published