8

我想在 Ruby 女巫 net::ssh 中编写代码,在远程 linux 机器上一一运行命令并记录所有内容(在 linux 机器上称为命令、stdout 和 stderr)。

所以我写函数:

  def rs(ssh,cmds)
    cmds.each do |cmd|
      log.debug "[SSH>] #{cmd}"
      ssh.exec!(cmd) do |ch, stream, data|    
        log.debug "[SSH:#{stream}>] #{data}"            
      end  
    end
  end

例如,如果我想在远程 linux 上创建新文件夹和文件:“./verylongdirname/anotherlongdirname/a.txt”,并列出该目录中的文件,并在那里找到 firefox(这有点愚蠢:P)所以我打电话上面的程序是这样的:

Net::SSH.start(host, user, :password => pass) do |ssh|  

  cmds=["mkdir verylongdirname", \                                 #1
        "cd verylongdirname; mkdir anotherlongdirname, \           #2
        "cd verylongdirname/anotherlongdirname; touch a.txt", \    #3
        "cd verylongdirname/anotherlongdirname; ls -la", \         #4
        "cd verylongdirname/anotherlongdirname; find ./ firefox"   #5 that command send error to stderr.
        ]

  rs(ssh,cmds)   # HERE we call our function

  ssh.loop
end

运行上面的代码后,我将在#1、#2、#3、#4、#5 行中获得有关执行命令的完整 LOG 女巫信息。问题是 linux 上的状态,在从 cmds 数组执行命令之间,没有保存(所以我必须在运行正确的命令之前重复“cd”语句)。我对此并不满意。

我的目的是拥有这样的 cmds 表:

  cmds=["mkdir verylongdirname", \     #1
        "cd verylongdirname", \        
        "mkdir anotherlongdirname", \  #2
        "cd anotherlongdirname", \
        "touch a.txt", \               #3
        "ls -la", \                    #4
        "find ./ firefox"]             #5

如您所见,运行每个命令之间的状态保存在 linux 机器上(在运行正确的命令之前我们不需要重复适当的“cd”语句)。如何更改“rs(ssh,cmds)”程序来做到这一点并像以前一样记录一切(comand,stdout,stdin)?

4

4 回答 4

4

也许尝试使用 ssh 通道而不是打开远程 shell。这应该保留您的命令之间的状态,因为连接将保持打开状态:

http://net-ssh.github.com/ssh/v1/chapter-5.html

这里还有一篇用稍微不同的方法做类似事情的文章:

http://drnicwilliams.com/2006/09/22/remote-shell-with-ruby/

编辑 1

行。我明白你在说什么。SyncShell已从 Net::SSH 2.0 中删除。但是我发现了这个,看起来它做了很多事情SyncShell

http://net-ssh-telnet.rubyforge.org/

例子:

s = Net::SSH.start(host, user)
t = Net::SSH::Telnet.new("Session" => s, "Prompt" => %r{^myprompt :})
puts t.cmd("cd /tmp")  
puts t.cmd("ls")       # <- Lists contents of /tmp

Net::SSH::Telnet是同步的,并保留状态,因为它在您的远程 shell 环境的 pty 中运行。记得设置正确的提示检测,否则Net::SSH::Telnet一旦调用它就会出现挂起(它正在尝试查找提示)。

于 2011-07-24T13:53:05.310 回答
2

您可以改用管道:

require "open3"

SERVER = "..."
BASH_PATH = "/bin/bash"

BASH_REMOTE = lambda do |command|
  Open3.popen3("ssh #{SERVER} #{BASH_PATH}") do |stdin, stdout, stderr|
    stdin.puts command
    stdin.close_write
    puts "STDOUT:", stdout.read
    puts "STDERR:", stderr.read
  end
end

BASH_REMOTE["ls /"]
BASH_REMOTE["ls /no_such_file"]
于 2011-07-24T21:18:32.807 回答
2

好的,最后在@Casper 的帮助下,我得到了程序(可能有人使用它):

  # Remote command execution
  # t=net::ssh:telnet, c="command_string"
  def cmd(t,c)    
    first=true
    d=''    
    # We send command via SSH and read output piece by piece (in 'cm' variable)
    t.cmd(c) do |cm|       
      # below we cleaning up output piece (becouse it have strange chars)     
      d << cm.gsub(/\e\].*?\a/,"").gsub(/\e\[.*?m/,"").gsub(/\r/,"")     
      # when we read entire line(composed of many pieces) we write it to log
      if d =~ /(^.*?)\n(.*)$/m
        if first ; 
          # instead of the first line (which has repeated commands) we log commands 'c'
          @log.info "[SSH]>"+c; 
          first=false
        else
          @log.info "[SSH] "+$1; 
        end
        d=$2        
      end      
    end

    # We print lines that were at the end (in last piece)
    d.each_line do |l|
      @log.info "[SSH] "+l.chomp      
    end
  end

我们在代码中调用它:

#!/usr/bin/env ruby

require 'rubygems'

require 'net/ssh'

require 'net/ssh/telnet'

require 'log4r'
...
...
...
Net::SSH.start(host, user, :password => pass) do |ssh|  
  t = Net::SSH::Telnet.new("Session" => ssh)
  cmd(t,"cd /")
  cmd(t,"ls -la")
  cmd(t,"find ./ firefox")  
end

谢谢再见。

于 2011-07-26T16:07:36.477 回答
0

这是 Net/ssh 的包装器,这里的文章http://ruby-lang.info/blog/virtual-file-system-b3g

来源https://github.com/alexeypetrushin/vfs

记录所有命令只需覆盖 Box.bash 方法并在那里添加日志记录

于 2011-08-05T22:22:42.127 回答