解决问题了 修改下面的文件
vi /usr/share/novnc/core/websock.js
找到这个this.attach(new WebSocket(uri, protocols));这列
修改后
open(uri, protocols) {
this.attach(new WebSocket(uri, ['binary', 'base64']));
}
在下方链接找到解决方案
https://techglimpse.com/openstack-novnc-code-400-base64-protocol-error/
vi /usr/share/novnc/core/websock.js
找到这个this.attach(new WebSocket(uri, protocols));这列
修改后
open(uri, protocols) {
this.attach(new WebSocket(uri, ['binary', 'base64']));
}
在下方链接找到解决方案
https://techglimpse.com/openstack-novnc-code-400-base64-protocol-error/