现象
前端报错:SSH.vue:51 WebSocket connection to ‘ws://127.0.0.1:8000/server/terminal/120.59.88.26/22/1/’ failed:
后端报错:Not Found: /server/terminal/120.79.83.26/22/1/
原因
django的版本与channels的版本不匹配(django的版本是4.2.8,channel的版本是3.0.0)
解决
将django的版本降到3.2
pip uninstall django
pip install Django==3.2 -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com