CentOS 7.8 配置 VNC 服务

举报
zuozewei 发表于 2021/10/19 10:05:01 2021/10/19
【摘要】 CentOS 7.8 配置 VNC 服务

前言

安装的 Centos 服务器需要进行 GUI 操作。

环境说明

CentOS 7.8(Desktop Install)

因为使用图形用户界面,本例使用 GNOME 桌面环境。

$ cat /etc/redhat-release 
CentOS Linux release 7.8.2003 (Core)

系统用户有两个 root 和 user,VNC Viewer 使用 user 进行访问

安装

安装桌面环境

如果没有安装 Desktop 版本,需要先安装 X Windows

注意:
安装桌面环境,未测试

sudo yum check-update
sudo yum groupinstall "X Window System"
sudo yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts

设置默认启动图形界面:

sudo unlink /etc/systemd/system/default.target
sudo ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target

重启服务器:

sudo reboot

重启之后,应该有 CentOS 7 的桌面环境

安装 VNC Server

yum 安装:

sudo yum install tigervnc-server

配置 VNC Server

VNC Server 支持多种配置,如:

  • 单用户单界面配置(一个用户访问,使用一个界面)
  • 多用户单界面配置(多个用户访问,使用同一个界面)
  • 多用户多界面配置(多个用户访问,使用各自的界面)

本例比较简单,只介绍单用户单界面配置。其他类型的配置,可以参考 CHAPTER 12. TIGERVNC - RedHat Customer Portal

配置单用户单界面

拷贝模板:

sudo cp /usr/lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@.service

网上其他资料,拷贝的文件名为 vncserver@:1.service,没有必要,后续说明。

编辑配置文件:

sudo vi /etc/systemd/system/vncserver@.service

编辑完:

# The vncserver service unit file
#
# Quick HowTo:
# 1. Copy this file to /etc/systemd/system/vncserver@.service
# 2. Replace <USER> with the actual user name and edit vncserver
#    parameters in the wrapper script located in /usr/bin/vncserver_wrapper
# 3. Run `systemctl daemon-reload`
# 4. Run `systemctl enable vncserver@:<display>.service`
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted!  For a secure way of using VNC, you should
# limit connections to the local host and then tunnel from
# the machine you want to view VNC on (host A) to the machine
# whose VNC output you want to view (host B)
#
# [user@hostA ~]$ ssh -v -C -L 590N:localhost:590M hostB
#
# this will open a connection on port 590N of your hostA to hostB's port 590M
# (in fact, it ssh-connects to hostB and then connects to localhost (on hostB).
# See the ssh man page for details on port forwarding)
#
# You can then point a VNC client on hostA at vncdisplay N of localhost and with
# the help of ssh, you end up seeing what hostB makes available on port 590M
#
# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
#
# Use "-localhost" to prevent remote VNC clients connecting except when
# doing so through a secure tunnel.  See the "-via" option in the
# `man vncviewer' manual page.


[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=simple

# Clean any existing files in /tmp/.X11-unix environment
ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
ExecStart=/usr/bin/vncserver_wrapper root %i
ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

[Install]
WantedBy=multi-user.target

注意:

  • 启动服务的用户为 root,添加 User=root, 这样 VNC Client 访问时可以看到菜单栏
  • <USER> 替换为 user (本机的非 root 用户), 这样用户登录到 user 的界面;
  • :wq 保存配置之后,重启 systemd
sudo systemctl daemon-reload

配置访问密码

本例使用 user 用户的桌面环境,如果使用其他用户,请先切换到 user 用户

# su user
$ vncpasswd
Password:
Verify:
Would you like to enter a view-only password (y/n)? n

开启服务

sudo systemctl enable vncserver@:1.service
sudo systemctl start vncserver@:1.service

这样就开启了第一个界面

注意
服务的文件 /etc/systemd/system/vncserver@.service没有 :1
:1 使当参数启动服务器,表示启动第一个界面

打开防火墙

我们需要配置防火墙, 打开 VNC 服务

$ sudo firewall-cmd --permanent --add-service vnc-server
success
$ sudo firewall-cmd --reload
success

客户端访问

下载 VNC Viewer

设置如下:

VNC Server: YOUR_SERVER_IP:1
Name: YOUR_Display_1

在这里插入图片描述

连接之后,输入 user 的 vpnpasswd,既可看到界面了

遇到问题

遇到了 vncserver 无法启动的问题 (systemctl restart vncserver@:1.service)

Job for vncserver@:1.service failed because a configured resource limit was exceeded. See "systemctl status vncserver@:1.service" and "journalctl -xe" for details.

解决方法,进入.X11-unix文件夹清空文件:

cd /tmp/.X11-unix/

rm -rf *

之后再重启服务就可以了:

systemctl restart vncserver@:1.service
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。