root用户Linux银河麒麟服务器安装vnc服务

安装必要桌面环境组件

bash 复制代码
yum install mate-session-manager -y
mate-session #确定是否安装成功

安装vnc服务器

bash 复制代码
yum install tigervnc-server -y

切换到root为root得vnc设置密码

bash 复制代码
su root
vncpasswd

给root用户设置vnc服务器文件

bash 复制代码
vi /etc/systemd/system/vncserver@:1.service
[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=forking
User=root
Group=root
WorkingDirectory=/root
Environment="HOME=/root"
ExecStart=/usr/bin/vncserver -autokill :1
ExecStop=/usr/bin/vncserver -kill :1

[Install]
WantedBy=multi-user.target

重新加载服务器文件

bash 复制代码
systemctl daemon-reload

编辑vnc启动脚本文件

bash 复制代码
[root@localhost system]# cat /root/.vnc/xstartup

#!/bin/bash
xrdb $HOME/.Xresources
export XKL_XMODMAP_DISABLE=1

unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
exec /usr/bin/mate-session

启动vnc服务

bash 复制代码
systemctl start vncserver@:1

查看启动是否成功

bash 复制代码
systemctl status vncserver@:1

查看vnc启动日志情况

bash 复制代码
cat /root/.vnc/localhost.localdomain:1.log
相关推荐
workingman_li几秒前
centos虚拟机异常关闭,导致数据出现问题
linux·运维·centos
Again_acme4 分钟前
20250118面试鸭特训营第26天
服务器·面试·php
Fireworkitte34 分钟前
linux环境变量配置文件区别 /etc/profile和~/.bash_profile
linux
Jackson~Y1 小时前
Linux(LAMP)
linux·运维·服务器
不知 不知1 小时前
最新-CentOS 7安装1 Panel Linux 服务器运维管理面板
linux·运维·服务器·centos
晚秋贰拾伍3 小时前
设计模式的艺术-职责链模式
运维·设计模式·运维开发·责任链模式·开闭原则·单一职责原则
Bug退退退1233 小时前
IP协议特性
服务器·网络·tcp/ip
花糖纸木4 小时前
【Linux】深刻理解动静态库
linux·运维·服务器
运维实战课程4 小时前
docker安装elk6.7.1-搜集nginx-json日志
linux·运维·服务器
运维实战课程4 小时前
docker安装elk6.7.1-搜集java日志
linux·运维·服务器