1

我正在尝试编写一些可以连接到 XenServer VM 控制台(通过/usr/lib/xen/bin/xenconsole)的 ruby​​ 代码,方法是首先通过 SSH 连接到主机服务器,然后从命令行访问 VM 控制台。

为此,我正在使用 ruby​​ 库Net::SSH。我可以通过 SSH 登录主机服务器并运行命令以获取 VM 的 DOM id。当我运行 xenconsole 命令时,问题就来了。您必须在命令后按“enter”才能转储到控制台,然后您必须按CTRL + ]退出 VM 的控制台并返回主机的命令行。

我正在使用下面的代码,但它挂在“按 Enter”点,并且没有从 SSH 通道以 STDOUT 或 STDERR 形式提供任何反馈。我该怎么做才能到达 VM 的控制台以在 VM 上执行命令?那么如何发送CTRL + ]字符呢?

def execute_remote_console(hostname, port, username, password, uuid)

begin

Net::SSH.start( hostname, username, :password => password, :port => port ) do |session|

  dom_list_line = session.exec! "list_domains | grep #{uuid}"
  if dom_list_line.match(/(\d+)/)
    dom_id = $1
    puts "found #{uuid} on DOM #{dom_id}"
  else
    raise "couldn't find DOM id"
  end

  console_command = "/usr/lib/xen/bin/xenconsole #{dom_id}"
  puts "connecting to console: #{console_command}"

  session.exec!( console_command ) do |ch,stream,data|

    puts "pressing (enter)"
    ch.send_data "\n"

    case stream
      when :stderr
        puts "E-> #{data}"
        ch.exec "cat /etc/hostname" do |chan, success|
          raise "could not execute command" unless success

          # "on_data" is called when the process writes something to stdout
          chan.on_data do |c, data|
            $STDOUT.print data
          end

          # "on_extended_data" is called when the process writes something to stderr
          chan.on_extended_data do |c, type, data|
            $STDERR.print data
          end

          chan.on_close { puts "done!" }
        end
      when :stdout
        puts "O-> #{data}"
      else
        puts" other: #{data}"
    end 

  end #end session.exec


end #end SSH.start


  rescue
    puts "\t\t\tok (#{$!.message})" 
  end 

end #end function
4

0 回答 0