Centos7服务器搭建VNC Server环境

Posted 面朝大海 春暖花开

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7服务器搭建VNC Server环境相关的知识,希望对你有一定的参考价值。

在企业级项目的开发中,尤其是分布式项目,经常直接在服务器上进行开发工作,操作系统环境一般是Centos 7。普遍状况是,在服务器上安装IDE 开发工具,通过

Xshell等工具远程启动,本地通过虚拟桌面打开IDE,使用体验是非常差的,IDE 卡顿严重,及其影响开发体验。

 

解决方案:在Centos服务器上安装VNC(virtual network computing) Server。参考书可见:鸟哥的linux私房菜-服务器架设篇

VNC Server会在服务端启动一个监听用户要求的端口,端口号一般在5901-5910之间。(大概就是说,最多开10个虚拟桌面)

systemctl enable [email protected]:1 
# 对应端口号5901, 注意避免与虚拟机端口号冲突

systemctl enable [email protected]:2
# 对应端口号5902(如果要创建两个虚拟桌面的话)


# 修改service文件,以root用户为例
vim /etc/systemd/system/multi-user.target.wants/vncserver@:1.service
# 添加下面两行
ExecStart=/usr/sbin/runuser -l root -c "/usr/bin/vncserver %i"
PIDFile=/root/.vnc/%H%i.pid


systemctl daemon-reload #重新加载systemd服务配置文件
vncpasswd #设置当前用户密码
systemctl start [email protected]:1
# 防火墙放行TCP 5901端口或直接禁用防火墙 systemctl stop firewalld systemctl disable firewalld # 在本地电脑上下载并安装vnc viewer(client),下载地址如下 https://www.tightvnc.com/download.html # 输入ip:port 连接服务器 例:192.168.122.128:5901 例:192.168.122.128:5902 # 调整分辨率 Applications>System Tools>Settings>Devices>Displays>Desolution # 禁用黑屏 Applications>System Tools>Settings>Power>Blank screen

  

 

以上是关于Centos7服务器搭建VNC Server环境的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7.4下 VNC Server的搭建和客户端的连接配置

Centos7远程桌面 vnc-server设置

redhat 5.9下搭建vnc环境

CentOS7.1 VNC Server服务配置

VNC服务器的搭建(带图形化支持)

CentOS7 下VNC Server远程桌面配置详解