Ruby on Rails 中通过显式 TLS/SSL 的 ruby​​ ftp

发布于 2024-11-07 19:03:28 字数 317 浏览 2 评论 0原文

可能的重复:
来自 Ruby on Rails 应用的 FTPS (TLS/SSL) < /p>

你好各位,

我如何从 Ruby (RoR) 连接到 ftps(在 Ruby on Rails 中通过显式 TLS/SSL 进行 ftp)主机?

谷歌搜索没有提供答案。

Possible Duplicate:
FTPS (TLS/SSL) from Ruby on Rails App

Hi, folks,

How can I connect from Ruby (RoR) to ftps (ftp over explicit TLS/SSL in Ruby on Rails) host?

Googling didn't provide an answer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

老旧海报 2024-11-14 19:03:28

找到了解决办法:
我们可以使用 lftp 实用程序,然后从 ruby​​ 调用它。

lftp -f file_with_command

在“file_with_command”文件中,我们指定:

lftp -u %s,%s %s
get '%s'
exit

其中 %s 将替换为用户名、密码、主机名、文件以获取相应的信息。

Found a solution:
we can use lftp utility, then call it from ruby.

lftp -f file_with_command

where in 'file_with_command' file we specify :

lftp -u %s,%s %s
get '%s'
exit

where %s will be replaced with username, password, hostname, file to get correspondingly.

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