novnc websockify kvm虚拟机

首先将 vnc_listen = “0.0.0.0” 解禁,文件位置/etc/libvirt/qemu.conf
1.下载novnc

git clone https://github.com/novnc/noVNC.git

2.启动novnc

cd noVNC
$ ./utils/launch.sh --vnc localhost:5900

浏览器访问http://localhost:6080/vnc_lite.html
3.下载使用websockify

git clone https://github.com/novnc/websockify.git

创建态token文件便于一个端口访问多个vnc

cd websockify
mkdir token
vi ./token/vm1.conf

为了方便可以每台kvm创建自己的token格式如下:

vm01: 10.6.31.60:5900

注意空格
启动前先重启之前的novnc(指定端口8888)

./launch.sh --listen 8888

编写开机自启动/etc/rc.local

然后启动websockify

./run --token-plugin TokenFile --token-source ./token/ 6080

在浏览器输入http://localhost:8888/vnc_lite.html?host=10.6.31.60&port=6080&path=websockify/?token=vm01就可以访问虚拟机了
其中host 为websockify所在的服务器ip,port为其端口,path为访问路径,token 为我们刚才配置的token

你可能感兴趣的:(虚拟机监控)