CentOS 7 部署VNC Server

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 部署VNC Server相关的知识,希望对你有一定的参考价值。



介绍


VNC是Virtual Network Console(虚拟网络控制台)的缩写。由著名的AT&T的欧洲研究实验室开发的一款开源软件。它是一款优秀的远程控制工具软件,其主作用就是访问服务器的图形界面,并且支持多个用户访问。

它的远程控制能力强大,高效实用,其性能可以和Windows和MAC中的其它远程控制软件相媲美。

VNC由两部分组成服务器端和客户端。VNC Server是在可以运行在Linux、UNIX、Windows等多种操作系统上,客户端组件VNC Viewer也有多种平台上的版本。



实验



实验环境


系统:CentOS Linux release 7.2.1511 (Core)

系统位数:x86_64



关闭防火墙


[[email protected] ~]# systemctl stop firewalld.service

[[email protected] ~]# systemctl disable firewalld.service



关闭SELinux


[[email protected] ~]# setenforce 0  #临时关闭

[[email protected] ~]# sed -i ‘s/SELINUX=enforcing/SELINUX=permissive/g‘ /etc/selinux/config  #永久



VNC安装


[[email protected] ~]# yum  -y install  tigervnc-server



创建密码


[[email protected] ~]# vncpasswd

Password:123123

Verify:123123



增加窗口


cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:1.service

注意:1表示5901端口,可创建多端口,多个用户登录。


修改配置


[[email protected] ~]# vim  /lib/systemd/system/[email protected]:1.service

ExecStart=/usr/sbin/runuser -l root -c "/usr/bin/vncserver %i"PIDFile=/root/.vnc/%H%i.pid
PIDFile=/root/.vnc/%H%i.pid

注意:打开编辑文件时,文件开头有相关操作介绍。



重新加载配置


[[email protected] ~]# systemctl daemon-reload



启动服务


[[email protected] ~]# systemctl start  [email protected]:1.service

可配置开机启动:

[[email protected] ~]# systemctl enable [email protected]:1.service



安装桌面服务(如果已是就跳过)


[[email protected] ~]# yum -y group install "GNOME Desktop"

注意:需要重启系统,另外利用VNC操作KVM虚拟机是一个不错的选择(本机就无需安装桌面服务)。


连接桌面

技术分享技术分享

技术分享单用户连接技术分享

技术分享多用户连接

技术分享

技术分享


FQA


Q:连接时报错“too many security failures”

A:服务存在问题,需要重启服务“systemctl restart [email protected]:1.service”。


Q:VNC连接安全?

A:VNC默认连接不加密,可以利用ssh加密连接,具体操作方法请自行研究。


本文出自 “Scorpions丶毒” 博客,请务必保留此出处http://scorpions.blog.51cto.com/7138036/1918711

以上是关于CentOS 7 部署VNC Server的主要内容,如果未能解决你的问题,请参考以下文章

Centos7下部署VNC

VNC CentOS 7 远程工具,VNC CentOS 7 远程工具推荐!

VNC CentOS 7 远程工具,VNC CentOS 7 远程工具推荐!

centos6.8部署vnc服务

centos7.2部署vnc服务

[京东云][centos]配置VNC,部署Jenkins