Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/meethigher/ftp-server
- Owner: meethigher
- License: gpl-2.0
- Created: 2023-10-29T13:33:02.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-21T15:44:45.000Z (6 months ago)
- Last Synced: 2024-07-22T08:28:05.761Z (5 months ago)
- Topics: apache, ftp-server, ftpserver
- Language: Java
- Homepage: https://meethigher.top/blog/2023/learn-ftp/
- Size: 76.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```