首页 > 代码库 > Centos7远程桌面设置
Centos7远程桌面设置
Server端:(centos 7.2)
1. 安装VNC server
yum -y install tigervnc-server
2. 启动VNC server
vncserver
在此步骤会要求设置连接密码
3. 验证服务
vncserver -list
可以列出目前所有的 VNC 虚拟桌面
4. 防火墙
可设置防火墙策略放开vnc server的端口5901或者直接关闭防火墙命令
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
开启端口
firewall-cmd --zone=public --add-port=5901/tcp –permanent
查看已开放端口
firewall-cmd --list-ports
Client端:(win10)
下载vnc viewer
https://www.realvnc.com/download/file/vnc.files/VNC-6.0.1-Windows.exe
2. 连接服务端
地址构成:ip:虚拟桌面序号
[root@localhost ~]# vncserver -list
TigerVNC server sessions:
X DISPLAY # PROCESS ID
:1 7016
在此例中,桌面序号为1
输入地址,连接成功后再输入之前设置的密码即可。
本文出自 “黑马胖子” 博客,请务必保留此出处http://heimapangzi.blog.51cto.com/9790561/1895884
Centos7远程桌面设置