我有一个 shell 脚本,它通过 SSH 连接到同一主机(我的服务器)并在整个脚本中混合运行各种命令。例如:
ssh -o ConnectTimeout=3 -o ConnectionAttempts=3 user@my-server "foocommand here"
mkdir -p /path/here
touch service.conf
...
ssh -o ConnectTimeout=3 -o ConnectionAttempts=3 user@my-server "barcommand here"
mkdir -p /other/path/here
touch /other/path/here/service.conf
...
ssh -o ConnectTimeout=3 -o ConnectionAttempts=3 user@my-server "darcommand here"
等等。问题是每个 SSH 连接打开并且握手需要一些时间,因为服务器my-server
在地理上远离正在运行的脚本。
有没有办法加快这个过程并防止为每个必需的命令打开新的 SSH 连接?像http这样的东西可以让SSH保持活动状态吗?
是的,您可以设置 ssh 以保持与远程服务器的持久连接。这是通过
ControlMaster
,ControlPath
和ControlPersist
选项完成的。示例配置(放在 中
$HOME/.ssh/config
):设置
ControlPath
启用连接共享;当与远程主机的 ssh 连接打开时,与同一用户/主机的其他 ssh 连接将通过该连接进行多路复用。设置
ControlPersist
允许连接在最后一个 ssh 会话退出后保持活动一段时间。设置
ControlMaster
为auto
允许 ssh 重用现有连接或在必要时创建新连接。有关这些选项的详细说明,请参见
ssh_config(5)
手册页。