Ruby Net::SFTP 上传挂起

Ruby Net::SFTP upload hangs

我正在使用 net-sftp gem 将文件上传到 ftp 服务器。这是我的代码:

require "net/sftp"

Net::SFTP.start(url, username, password: password) do |sftp|
  sftp.upload!(file_path, "/")
end

它只是挂在上传线上,并最终因错误 Net::SSH::Disconnect: connection closed by remote host 而超时。我可以使用相同的 url、用户名和密码通过 FileZilla 通过 SFTP 连接。

我也尝试了 运行 非块版本 verbose: :debug:

sftp = Net::SFTP.start(test.ftphost.com, ftp_username, password: ftp_password, verbose: :debug)

^ 这产生的输出显示连接良好:

I, [2015-04-29T10:32:51.381339 #25769]  INFO -- net.ssh.connection.session[3fc8a502c24c]: channel_success: 0 D, [2015-04-29T10:32:51.381429 #25769] DEBUG -- net.sftp.session[3fc8a5025d70]: sftp subsystem successfully started

然后我输入了以下内容:

sftp.upload!("/Users/marina/Desktop/test.png", "/")

输出卡成这样:

I, [2015-04-29T10:32:55.035471 #25769]  INFO -- net.sftp.session[3fc8a5025d70]: sending open packet (0)
D, [2015-04-29T10:32:55.035740 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: queueing packet nr 12 type 94 len 44
D, [2015-04-29T10:32:55.036149 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: sent 68 bytes
D, [2015-04-29T10:32:55.119070 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: read 52 bytes
D, [2015-04-29T10:32:55.119356 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: received packet nr 11 type 96 len 28
I, [2015-04-29T10:32:55.119470 #25769]  INFO -- net.ssh.connection.session[3fc8a502c24c]: channel_eof: 0
D, [2015-04-29T10:32:55.195747 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: read 120 bytes
D, [2015-04-29T10:32:55.196037 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: received packet nr 12 type 98 len 44
I, [2015-04-29T10:32:55.196176 #25769]  INFO -- net.ssh.connection.session[3fc8a502c24c]: channel_request: 0 exit-status false
D, [2015-04-29T10:32:55.196445 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: received packet nr 13 type 97 len 28
I, [2015-04-29T10:32:55.196527 #25769]  INFO -- net.ssh.connection.session[3fc8a502c24c]: channel_close: 0
D, [2015-04-29T10:32:55.196743 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: queueing packet nr 13 type 97 len 28
D, [2015-04-29T10:32:55.196806 #25769] DEBUG -- net.sftp.session[3fc8a5025d70]: sftp channel closed
D, [2015-04-29T10:32:55.197022 #25769] DEBUG -- tcpsocket[3fc8a4cf464c]: sent 52 bytes

有什么想法吗?

什么是 file_path?

如果您使用相对路径,它将相对于应用程序启动的目录。

以下可能有用:

Dir.pwd
Dir.entries('.')

也许 verbose: debug 会有所帮助。

还有:

I'm also having problems using Net::SFTP.start with a block and have had to make do with an inline approach.

sftp = Net::SFTP.start(host, username, ssh_session_options)
sftp.upload!(file.path, remote_path)
sftp.session.shutdown!

Github Issue

问题是我放错了目标位置。它不应该只是一个目录,还应该是实际的文件名。所以与其说下面的

require "net/sftp"

Net::SFTP.start(url, username, password: password) do |sftp|
  sftp.upload!(file_path, "/")
end

我需要添加文件名:

require "net/sftp"

Net::SFTP.start(url, username, password: password) do |sftp|
  sftp.upload!(file_path, "/filename.extension")
end

块语法对我有用。