0

Debian ssh サーバーに Net::SSH.start を実行してファイルを転送しようとすると、毎回非常に奇妙なエラー メッセージが表示されます - `start': Net::SSH::AuthenticationFailed, but all 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

net/ssh 2.6 にはオプションがありません:username。パラメータのように設定できます。

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