Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/meethigher/ftp-server

an FTP service implemented in Java language based on Apache FtpServer 1.2.0 Release — Apache MINA.
https://github.com/meethigher/ftp-server

apache ftp-server ftpserver

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

![image-20240421225808979](README/image-20240421225808979.png)

# Introduction

ftp-server is an FTP service implemented in Java language based on [Apache FtpServer 1.2.0 Release — Apache MINA](https://mina.apache.org/ftpserver-project/download_1_2.html).

it's very lightweight and easy to use.

# Document

download [release](https://github.com/meethigher/ftp-server/releases), then run

```sh
java -jar ftp-server.jar
```

you can configure ftp by configuring **server.properties**.

```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`

```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
```