1、安装tightvncserver
下载地址
2、安装nodejs
下载地址
3、在D盘新建websock目录(其它也行,并CMD进入这个目录)
4、运行 npm i node-websockify
5、新建config.sj 并把下面代码复制进去
var websockify = require('node-websockify');
//192.168.110.202 为VNC server主机的IP
websockify({
source: '192.168.1.2:900',//websocket Server 的服务地址和端口,端口号为9000
target: '192.168.1.2:5900',//VNC Server 的服务地址和端口,端口号为 5900
});
6、直接运行:
node config.js
如果后台运行
npm install -g pm2
pm2 start app.js // 启动
pm2 start app.js -i max //启动 使用所有CPU核心的集群
pm2 stop app.js // 停止
pm2 stop all // 停止所有
pm2 restart app.js // 重启
pm2 restart all // 重启所有
pm2 delete app.js // 关闭
7、在noVNC 连接即可
8、novnc安装
下载noVNC服务,通过nginx 启用该服务
下载noVNC: github.com/novnc/noVNC
把noVNC服务部署到Nginx上: 把noVNC项目放在 nginx/html 目录下
启动nginx服务: 在Nginx 目录下,使用命令行命令: nginx.exe start 启动服务