当我尝试 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