https://github.com/saiupadhyayula/java-sftpserver
A simple SFTP Server implemented using Apache Mina SSHD library using Java and Spring boot
https://github.com/saiupadhyayula/java-sftpserver
java java-sftpserver sftp-server
Last synced: 11 months ago
JSON representation
A simple SFTP Server implemented using Apache Mina SSHD library using Java and Spring boot
- Host: GitHub
- URL: https://github.com/saiupadhyayula/java-sftpserver
- Owner: SaiUpadhyayula
- Created: 2019-02-23T12:02:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-29T15:58:19.000Z (about 4 years ago)
- Last Synced: 2023-08-10T16:46:02.765Z (almost 3 years ago)
- Topics: java, java-sftpserver, sftp-server
- Language: Java
- Size: 53.7 KB
- Stars: 20
- Watchers: 5
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# java-sftpserver
A simple SFTP Server implemented using Apache Mina SSHD library using Java and Spring boot.
To start the server , just run the JavaSftpserverApplication class and after that type the following command to start a SFTP session.
```
sftp -oPort=2222 test@localhost
```
You can read more explanation about how it is implemented at :
https://programmingtechie.com/2019/02/23/how-to-implement-an-sftp-server-in-java-spring-boot-using-apache-mina-sshd/
https://programmingtechie.com/2019/08/18/how-to-implement-an-sftp-server-in-java-spring-boot-using-apache-mina-sshd-part-2-using-public-key-authentication/