我运行这个:
ssh -t -vvv -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ubuntu@${INSTANCE_ADDRESS} <<EOI
# Setup Oracle Java
...
# Install dependencies - mysql must be built from source, as the 12.04 apt-get hangs
export DEBIAN_FRONTEND=noninteractive
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password password diurd'
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password_again password diurd'
sudo apt-get -q -y -V --force-yes --reinstall install mysql-server-5.5
echo "ALL DONE with druid environment setup!"
exit
EOI
注意:我已尝试在 ssh 中使用和不使用 -t。
-vvv 的调试输出如下:
...
ldconfig deferred processing now taking place
ALL DONE with druid environment setup!
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
然后进程就永远停留在那里。为什么 ssh 命令不会结束?我尝试过使用 -t 和不使用 -t,也尝试过使用 exit 和不使用 exit。这没什么区别 :(
更新:当我在脚本末尾输入“jobs”时,我看到:
JOBS:
[1]- Running nohup bin/zookeeper-server-start.sh config/zookeeper.properties 2>&1 > /dev/null &
[2]+ Running nohup bin/kafka-server-start.sh config/server.properties 2>&1 > /dev/null &
我怎样才能运行这些服务并且仍然拥有一个结束的 ssh 会话?
更新:我现在手动放弃这些进程。但问题仍然没有解决。兄弟,你到底怎么了?
更新:逐行执行时,两个命令如果不按 CR 键就不会返回 shell:
nohup bin/zookeeper-server-start.sh config/zookeeper.properties &
nohup bin/kafka-server-start.sh config/server.properties &
答案1
通常,如果仍有后台连接处于打开状态,SSH 终端会话就会挂起。所谓后台连接,我指的是以下情况:
- X11 窗口转发
- STDOUT 和 STDERR
~#
通过在挂起的 SSH 终端中输入内容来查看挂起的 SSH 会话中仍然处于活动状态的连接。
可能是您的脚本正在打开您没有意识到的会话。或者您的远程计算机的终端配置.profile
(如 或.bashrc
等)中可能包含建立会话的内容。祝您好运!
顺便说一句,OpenSSH 客户端提供的一些其他转义序列也可能有用:
Supported escape sequences:
~. - terminate connection (and any multiplexed sessions)
~B - send a BREAK to the remote system
~C - open a command line
~R - Request rekey (SSH protocol 2 only)
~^Z - suspend ssh
~# - list forwarded connections
~& - background ssh (when waiting for connections to terminate)
~? - this message
~~ - send the escape character by typing it twice
(Note that escapes are only recognized immediately after newline.)
还有一件事,如果您希望 SSH 只运行命令并立即退出(即您不想要远程终端会话),您可以使用选项-f
。ssh
这将强制 SSH 连接成为后台作业。