ssh 隧道脚本在 beanstalk 部署中永远挂起
Posted
技术标签:
【中文标题】ssh 隧道脚本在 beanstalk 部署中永远挂起【英文标题】:ssh tunnel script hangs forever on beanstalk deployment 【发布时间】:2019-10-29 05:52:05 【问题描述】:在将应用程序部署到 aws beanstalk 时,我正在尝试创建 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】:你需要在后台运行ssh时添加-n选项以避免从stdin读取。
【讨论】:
以上是关于ssh 隧道脚本在 beanstalk 部署中永远挂起的主要内容,如果未能解决你的问题,请参考以下文章
PyCharm SSH 隧道通过本地 ssh 配置 (~/.ssh/config)