小编典典

如何重新连接到分离的 mosh 会话?

all

如何重新连接到分离的 mosh 会话或以其他方式摆脱

Mosh: You have a detached Mosh session on this server (mosh [XXXX]).

即mosh相当于什么

screen -D -R

或者可能

screen -wipe

此外,在文档中哪里可以找到这个答案?


阅读 62

收藏
2022-08-05

共1个答案

小编典典

出于安全原因,不能重新附加,见https://github.com/keithw/mosh/issues/394

要终止已分离的会话,请使用该消息中显示的 PID 号(即“XXXX”部分。)例如,如果您看到 –

Mosh: You have a detached Mosh session on this server (mosh [12345]).

并且可以运行这个命令:

kill 12345

此外,要关闭 所有 mosh 连接,您可以:

kill `pidof mosh-server`

请注意,如果您当前通过 mosh 连接,则最后一个命令也会断开您的连接。

2022-08-05