如何在一个 bash 脚本中启动多个 ssh 连接?

发布于 2024-10-30 20:10:40 字数 330 浏览 1 评论 0原文

当我开始工作时,我有 10 多个 ssh 服务器需要进行端口转发,但我厌倦了一一启动这些 ssh 连接。我知道在linux中强大的bash脚本可以解决这个问题。这是我的 bash 脚本示例,

#!/bin/bash
ssh -L 10001:somehost:3306 user@host1 -N
ssh -L 10002:somehost:3306 user@host2 -N
ssh -L 10003:somehost:3306 user@host3 -N
....

我发现如果第一个 ssh 连接启动,它只是停在那一行并等待它关闭。

谁能告诉我如何解决它?

i have 10+ ssh server needs to do port forwarding when i start to work, but i'm tired to start those ssh connections one by one. i know in linux the powerful bash script can handle this problem. here is my bash script example

#!/bin/bash
ssh -L 10001:somehost:3306 user@host1 -N
ssh -L 10002:somehost:3306 user@host2 -N
ssh -L 10003:somehost:3306 user@host3 -N
....

i found out that if the first ssh connection started, it just stopped at that line and wait it to close.

could any one tell me how to fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

枯叶蝶 2024-11-06 20:10:40

使用 -f 选项:

ssh -f -N -L 10001:somehost:3306 user@host1

来自 man ssh

-f      Requests ssh to go to background just before command execution.

Use the -f option:

ssh -f -N -L 10001:somehost:3306 user@host1

From man ssh:

-f      Requests ssh to go to background just before command execution.
烟若柳尘 2024-11-06 20:10:40

使用可以使用nohup;)

#!/bin/sh
nohup ssh -L 10001:host:3306 user@host1 -N
nohup ssh -L 10002:host:3306 user@host2 -N
nohup ssh -L 10003:host:3306 user@host3 -N

Use can use nohup ;)

#!/bin/sh
nohup ssh -L 10001:host:3306 user@host1 -N
nohup ssh -L 10002:host:3306 user@host2 -N
nohup ssh -L 10003:host:3306 user@host3 -N
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文