我的情况有点类似于“如何在 ruby 中创建 ssh 隧道,然后连接到远程主机上的 mysql 服务器”。
在我的本地机器上,我想对生产 MySQL 数据库主机运行查询。我的本地机器无法直接连接到数据库主机。但是,如果我通过 SSH 连接到网关机器,我可以运行 MySQL 客户端并连接到数据库主机。
我试图弄清楚如何以编程方式从我的机器运行一个查询,该查询被转发到网关机器,网关机器将其转发到数据库服务器,并返回结果。基本上我想要LOCAL => GATEWAY => DB_HOST
转发。
我有一个在命令行上运行ssh.exec
和 MySQL 的 hacky 解决方案,如下所示,但是,我正在尝试找到一种进行两次端口转发的方法。我试过了,但到目前为止还没有成功。
require 'rubygems'
require 'mysql2'
require 'net/ssh/gateway'
gateway = Net::SSH::Gateway.new(
$gateway_host, $gateway_user,:password => $gateway_pass)
# This works
ssh = gateway.ssh($db_host, $db_login_user)
data = ssh.exec!("mysql -u#{$db_user} -p#{$db_pass} #{$db_name} -e '#{$sql_query}'")
puts "#{data.class} is the class type"
puts data
# Want to do something like this with port forwarding
# client = Mysql2::Client.new(:host => $db_host,
# :username => $db_user,
# :password => $db_pass,
# :database => $db_name,
# :port => port)
# results = client.query($sql_query)
puts "end stuff"
ssh.close
有什么建议么?