Apache Ftp Server (java) SFTP 适合任何人吗?
在尝试让 sftp 工作后,我最终得到了一个无法工作的最简单的示例。基本上我已经用 main 创建了一个简单的类,并从 http://mina.apache.org/ftpserver/embedding-ftpserver-in-5-minutes.html。服务器启动没有任何异常,但没有客户端(winscp、cuteftp 等)都无法连接。我完全困惑任何指示将不胜感激......我猜我错过了一些完全明显的东西。
After trying to get sftp working ive ended up with the simplest possible sample that does not work. Basically I have created a simple class with main and copied the 2nd (SFTP) example from http://mina.apache.org/ftpserver/embedding-ftpserver-in-5-minutes.html. The server starts without any exceptions but no client (winscp, cuteftp etc) all fail to connect. Im completely baffled any pointers would be appreciated...im guessing im missing something completely obvious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SFTP 和 FTPS 是完全不同的协议。
SFTP 与 SSH 相关。 Java 实现包括:
FTPS 是基于 SSL 的 FTP。有很多很多的实现,包括 Apache FTPServer。
SFTP and FTPS are completely different protocols.
SFTP is related to SSH. Java implementations include:
FTPS is FTP over SSL. There are many, many implementations, including Apache FTPServer.
事实证明,您无法创建 SFTP 服务器,只能通过 ssl 进行 ftp :(
Turns out you cant create an SFTP server only ftp over ssl :(