Ruby on Rails 中通过显式 TLS/SSL 的 ruby ftp
可能的重复:
来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了解决办法:
我们可以使用
lftp
实用程序,然后从 ruby 调用它。在“file_with_command”文件中,我们指定:
其中
%s
将替换为用户名、密码、主机名、文件以获取相应的信息。Found a solution:
we can use
lftp
utility, then call it from ruby.where in 'file_with_command' file we specify :
where
%s
will be replaced with username, password, hostname, file to get correspondingly.