1Panel使用过程中服务被停止,且重置、重装均无法启动服务

面板中仅安装了opentry组件,并且启动了一个容器,运行php的hyperf框架服务。用着用着,突然无法使用,查看服务器资源状态也没有很大消耗,查看1panel状态发现被停止。重启服务,提示成功,但查看状态还是停止。

1pctl start


                    启动 1Panel 服务

:green_circle:[OK]启动 Core: 成功
:green_circle:[OK]启动 Agent: 成功

1pctl status


                   检查 1Panel 服务状态

:red_circle:[FAIL]Core: 已停止
:red_circle:[FAIL]Agent: 已停止

最后,在系统日志命令journalctl -u 1panel-agent.service发现以下提示:
Jan 23 13:51:13 app 1panel-agent[1570019]: [2026-01-23 13:51:13] [ERROR] [A panic occurred during receive ws message, error message: concurrent write to websocket connection
Jan 23 13:51:14 app 1panel-agent[1570019]: [2026-01-23 13:51:14] [ERROR] ssh sending combo output to webSocket failed, err: write unix /etc/1panel/agent.sock->@: use of closed >
Jan 23 13:51:14 app 1panel-agent[1570019]: [GIN] 2026/01/23 - 13:51:14 | 200 | 2h26m13s | | GET "/api/v2/hosts/terminal?cols=80&rows=24&&operateNode=l>
Jan 23 13:51:14 app systemd[1]: 1panel-agent.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
Jan 23 13:51:14 app systemd[1]: 1panel-agent.service: Failed with result ‘exit-code’.
Jan 23 13:51:19 app systemd[1]: 1panel-agent.service: Scheduled restart job, restart counter is at 2.
Jan 23 13:51:19 app systemd[1]: Stopped 1Panel, a modern open source linux panel.
Jan 23 13:51:19 app systemd[1]: Started 1Panel, a modern open source linux panel.
Jan 23 13:51:19 app systemd[1]: 1panel-agent.service: Main process exited, code=exited, status=205/LIMITS
Jan 23 13:51:19 app systemd[1]: 1panel-agent.service: Failed with result ‘exit-code’.
Jan 23 13:51:24 app systemd[1]: 1panel-agent.service: Scheduled restart job, restart counter is at 3.
Jan 23 13:51:24 app systemd[1]: Stopped 1Panel, a modern open source linux panel.

PS:豆包提示这是1Panel 处理容器监控 / SSH 终端的 WebSocket 连接时,多个程序协程同时向同一个连接写入数据,触发并发冲突,属于 1Panel 应用层的逻辑 bug;SSH 终端的 Unix 套接字已关闭,但程序仍尝试写入,导致 IO 错误; 最终触发status=2/INVALIDARGUMENT(参数无效),进程被迫退出。请大佬们看看有没有问题?