Apache Ftp Server (java) SFTP 适合任何人吗?

发布于 2024-11-25 12:26:26 字数 331 浏览 0 评论 0原文

在尝试让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哀由 2024-12-02 12:26:26

SFTP 和 FTPS 是完全不同的协议。

SFTP 与 SSH 相关。 Java 实现包括:

  • Maverick - 商业实现
  • Apache Mina SSHD - 开源 Apache Mina 项目的一部分

FTPS 是基于 SSL 的 FTP。有很多很多的实现,包括 Apache FTPServer。

SFTP and FTPS are completely different protocols.

SFTP is related to SSH. Java implementations include:

  • Maverick - a commercial implementation
  • Apache Mina SSHD - part of the open source Apache Mina project

FTPS is FTP over SSL. There are many, many implementations, including Apache FTPServer.

寒江雪… 2024-12-02 12:26:26

事实证明,您无法创建 SFTP 服务器,只能通过 ssl 进行 ftp :(

Turns out you cant create an SFTP server only ftp over ssl :(

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文