0

当我尝试 Net::SSH.start 到我的 debian ssh 服务器并传输文件时,每次我都会收到一条非常奇怪的错误消息 - `start': Net::SSH::AuthenticationFailed, but all the authentication data是正确的,我不知道是什么问题。有没有人面临同样的问题?该代码是在 ruby​​ 上编写的,并且正在使用 net/ssh 模块,这是一个代码:

require 'rubygems'
require 'net/ssh'

def copy_file(session, source_path, destination_path=nil)
  destination_path ||= source_path
  cmd = %{cat > "#{destination_path.gsub('"', '\"')}"}
  session.process.popen3(cmd) do |i, o, e|
    puts "Copying #{source_path} to #{destination_path}... "
    open(source_path) { |f| i.write(f.read) }
    puts 'Done.'
  end
end

Net::SSH.start("192.168.112.129", 
                :username=>'username',
                :password=>'password') do |session|
  copy_file(session, 'D:/test/1.txt')
  copy_file(session, '/home/timur/Documents/new_file.rb"')
end
4

1 回答 1

0

:usernamenet/ssh 2.6中没有选项,你可以像参数一样设置它:

Net::SSH.start('192.168.112.129', 'username', password: 'password') do |ssh|
  foo
end
于 2013-03-11T13:20:06.287 回答