Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3361983
  • 博文数量: 515
  • 博客积分: 5116
  • 博客等级: 大校
  • 技术积分: 4137
  • 用 户 组: 普通用户
  • 注册时间: 2006-09-30 11:24
个人简介

黑马王子就是我! 技术认证:系统分析师,网络规划设计师,网络工程师,信息系统监理师,系统集成项目管理师,初级程序员,MCSE,MCDBA,CCNA 目前主攻虚拟化技术,VPN,系统架构,集群和高可用性等。

文章分类

全部博文(515)

文章存档

2023年(11)

2022年(17)

2021年(19)

2020年(28)

2019年(42)

2018年(53)

2017年(41)

2016年(33)

2015年(43)

2014年(25)

2013年(13)

2011年(6)

2010年(28)

2009年(47)

2008年(55)

2007年(26)

2006年(28)

分类: 系统运维

2020-01-02 10:05:04

什么是noVNC

noVNC 是一个 HTML5 VNC 客户端,采用 HTML 5 WebSockets, Canvas 和 JavaScript 实现,noVNC 被普遍用在各大云计算、虚拟机控制面板中,比如 OpenStack Dashboard 和 OpenNebula Sunstone 都用的是 noVNC。
noVNC 采用 WebSockets 实现,但是目前大多数 VNC 服务器都不支持 WebSockets,所以 noVNC 是不能直接连接 VNC 服务器的,需要一个代理来做 WebSockets 和 TCP sockets 之间的转换。这个代理在 noVNC 的目录里,叫做 websockify 。

实验环境

  1. VMware Workstations
  2. 带桌面的CentOS7虚拟机
  3. Windows 10 宿主机 + Google Chrome浏览器

关闭防火墙

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

安装noVNC

安装依赖软件包

yum install -y epel*
yum install -y git
yum install -y tigervnc-server

执行以下命令并输入密码启动服务

vncserver :1

安装noVNC

git clone git://github.com/kanaka/noVNC

创建安全连接(一路回车下去...)

cd ./noVNC/utils/
openssl req -new -x509 -days 365 -nodes -out self.pem -keyout self.pem

注: VNC的默认会话不是安全的,需要创建一个安全的VNC连接。创建完毕的证书 self.pem 需要放置到 noVNC/utils 目录下,当启动 noVNC 时,websockify将自动装载证书。

运行noVNC

# 在noVNC目录下,执行 ./utils/launch.sh --vnc localhost:5901

测试连接

在浏览器访问(注意替换成自己的IP地址) 
输入密码,连接成功!

当有请求访问vnc时,控制台会显示日志

适配于 CentOS 6 的安装脚本

#!/bin/bash  # stop selinux and iptables setenforce 0
service iptables stop  # install vncserver and git yum install tigervnc-server git -y
vncserver :1 # 此时会提示输入密码  # download noVNC git clone git://github.com/kanaka/noVNC  # create secure connection cd ./noVNC/utils/
openssl req -new -x509 -days 365 -nodes -out self.pem -keyout self.pem  # run noVNC cd ../
./utils/launch.sh --vnc localhost:5901  # running

适配于 CentOS 7 的安装脚本

#!/bin/bash  # stop selinux and iptables setenforce 0
systemctl stop firewalld
systemctl disable firewalld  # install vncserver and git yum install -y epel*
yum install tigervnc-server git -y
vncserver :1 # 此时会提示输入密码  # download noVNC git clone git://github.com/kanaka/noVNC  # create secure connection cd ./noVNC/utils/
openssl req -new -x509 -days 365 -nodes -out self.pem -keyout self.pem  # run noVNC cd ../
./utils/launch.sh --vnc localhost:5901  # running

本文链接:https://www.cnblogs.com/connect/p/linux-novnc.html

阅读(2012) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~