gpt4 book ai didi

git - mux_client_request_session : session request failed: Session open refused by peer

转载 作者:太空狗 更新时间:2023-10-29 14:35:26 25 4
gpt4 key购买 nike

我使用 bitbucket 托管一些 git 存储库。

当我尝试做的时候:

git pull && git push

我得到:

mux_client_request_session: session request failed: Session open refused by peer
ControlSocket /home/ravi/.ssh/sockets/socket-git@bitbucket.org:22 already exists, disabling multiplexing

最佳答案

bitbucket.org has intentionally disabled ssh multiplexing ,因此请编辑您的 ~.ssh/config 文件,以便 ssh 在连接到它时不会尝试多路复用。

如果您在配置的顶层有 ControlMaster,请确保将其删除,因为它会取代任何 Host 部分配置。

然后添加:

Host bitbucket.???  # .org and .com
ControlMaster no

Host *
ControlMaster auto
ControlPersist yes
ControlPath ~/.ssh/socket-%r@%h:%p

请注意,Host bitbucket.org 必须位于 Host * 之前。

此外,ControlPath 应该只能由您自己写入。

然后,如果错误消息中指定的 ControlSocket 仍然存在,则将其删除。 (它将根据 ControlPersist 中的超时自动删除。

关于git - mux_client_request_session : session request failed: Session open refused by peer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52496020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com