CentOS 7 上的 TigerVNC 安装(如 Red Hat 系统管理员指南)

CentOS 7 上的 TigerVNC 安装(如 Red Hat 系统管理员指南)

我想在我新安装的 CentOS 7 服务器上安装 TigerVNC,版本为 centos-release-7-4.1708.el7.centos.x86_64。

因此,除了我已经尝试过的其他教程之外,我还遵循了 红帽指南。 然而,根据教程的不同错误消息,我从未启动过该服务。以下正是我在新安装的 CentOS 7 上所做的操作:

yum install tigervnc-server
cp /usr/lib/systemd/system/[email protected] /etc/systemd/system/[email protected]
vi /etc/systemd/system/[email protected]

初始文件内容:

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

[Service]
Type=forking
User=<USER>

# Clean any existing files in /tmp/.X11-unix environment
ExecStartPre=-/usr/bin/vncserver -kill %i
ExecStart=/usr/bin/vncserver %i
PIDFile=/home/<USER>/.vnc/%H%i.pid
ExecStop=-/usr/bin/vncserver -kill %i

[Install]
WantedBy=multi-user.target

编辑后的文件内容:

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

[Service]
Type=forking
User=root

# Clean any existing files in /tmp/.X11-unix environment
ExecStartPre=-/usr/bin/vncserver -kill %i
ExecStart=/usr/bin/vncserver %i
PIDFile=/home/root/.vnc/%H%i.pid
ExecStop=-/usr/bin/vncserver -kill %i

[Install]
WantedBy=multi-user.target

文件编辑后的说明:

systemctl daemon-reload
su - root
vncpasswd
systemctl start vncserver@:1.service

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


[root@localhost ~]# systemctl status vncserver@:1.service
● vncserver@:1.service - Remote desktop service (VNC)
Loaded: loaded (/etc/systemd/system/[email protected]; disabled; vendor preset: disabled)
Active: failed (Result: timeout) since Wed 2018-01-03 09:00:17 UTC; 22s ago
Process: 2045 ExecStart=/usr/bin/vncserver %i (code=exited, status=0/SUCCESS)
Process: 2040 ExecStartPre=/usr/bin/vncserver -kill %i (code=exited,  status=2)

Jan 03 08:58:50 localhost vncserver[2045]: New 'localhost:1 (root)' desktop is localhost:1
Jan 03 08:58:50 localhost vncserver[2045]: Creating default startup script /root/.vnc/xstartup
Jan 03 08:58:50 localhost vncserver[2045]: Creating default config /root/.vnc/config
Jan 03 08:58:50 localhost vncserver[2045]: Starting applications specified in /root/.vnc/xstartup
Jan 03 08:58:50 localhost vncserver[2045]: Log file is /root/.vnc/localhost:1.log
Jan 03 08:58:50 localhost systemd[1]: PID file /home/root/.vnc/localhost:1.pid not readable (y...art.
Jan 03 09:00:17 localhost systemd[1]: vncserver@:1.service start operation timed out. Terminating.
Jan 03 09:00:17 localhost systemd[1]: Failed to start Remote desktop service (VNC).
Jan 03 09:00:17 localhost systemd[1]: Unit vncserver@:1.service entered failed state.
Jan 03 09:00:17 localhost systemd[1]: vncserver@:1.service failed.
Hint: Some lines were ellipsized, use -l to show in full.

有谁知道我该如何解决这个问题?

答案1

路径 /home/root/.vnc/ 不存在

答案2

我认为问题是您为 PIDFile 配置了错误的位置。尝试:

PIDFile=/root/.vnc/%H%i.pid

相关内容