我的环境为节点服务器(Rundeck 服务器)和节点目标(远程 Solaris 主机)之间的用户“master”配置了 SSH 无密码身份验证。
在 Target 上,我想/app/acme/stopApp.sh
用 user执行一个脚本appmanager
。
通常,当我需要手动运行脚本时,我使用:
ssh master@server sudo su - appmanager
或者简单地说:
ssh -t master@server 'sudo su - appmanager'
它可以在没有密码的情况下运行并最终运行(作为 appmanager):
/app/acme/stopApp.sh
但我无法弄清楚如何使用 Net::SSH 重现这些步骤。当我执行sudo su - appmanager
then/app/acme/stopApp.sh
时,我是在子 shell 中执行的,对吗?
require 'rubygems'
require 'net/ssh'
require 'net/scp'
require 'crypt/blowfish'
require 'yaml'
#
# ...
#
Net::SSH.start( host, user, :password => password ) do |session|
# It's possible to proceed in this way?
cmd = 'sudo su - appmanager;/app/acme/stopApp.sh'
ses = session.exec!( cmd )
end
我意识到,如果我尝试在目标服务器上执行类似的操作:
sudo su -c /app/acme/stopApp.sh appmanager
我收到以下消息:
We trust you have received the usual lecture from the local System Administrator.
It usually boils down to these three things:
#1) Respect the privacy of others.
#2) Think before you type.
#3) With great power comes great responsibility. Password:
Password: