ssh隧道脚本在beantalk部署中永久挂起

时间:2019-06-14 15:01:12

标签: amazon-web-services amazon-ec2 ssh amazon-elastic-beanstalk ssh-tunnel

在将应用程序部署到AWS beantalk时,我正在尝试创建ssh隧道。我想将隧道作为后台进程,该进程始终在应用程序部署时连接。该脚本永远挂在部署上,我不明白为什么。

"/home/ec2-user/eclair-ssh-tunnel.sh":
mode: "000500" # u+rx
owner: root
group: root
content: |
  cd /root
  eval $(ssh-agent -s)
  DISPLAY=":0.0" SSH_ASKPASS="./askpass_script" ssh-add eclair-test-key </dev/null
# we want this command to keep running in the backgriund
# so we add & at then end
nohup ssh -L 48682:localhost:8080 ubuntu@[host...] -N &

这是我从/var/log/eb-activity.log获得的输出:

[2019-06-14T14:53:23.268Z] INFO  [15615] - [Application update suredbits-api-root-0.37.0-testnet-ssh-tunnel-fix-port-9@30/AppDeployStage1/AppDeployPostHook/01_eclair-ssh-tunnel.sh] : Starting activity...

生成了ssh隧道 ,我可以通过以下操作找到它:

[ec2-user@ip-172-31-25-154 ~]$ ps aux | grep 48682
root     16047  0.0  0.0 175560  6704 ?        S    14:53   0:00 ssh -L 48682:localhost:8080 ubuntu@ec2-34-221-186-19.us-west-2.compute.amazonaws.com -N

如果我终止了该过程,则部署将按预期进行,这表明该错误在隧道脚本中。我似乎找不到哪儿。

1 个答案:

答案 0 :(得分:0)

在后台运行ssh时,需要在ssh上添加-n选项,以避免从stdin读取。