RHEL7.1安装VNC

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RHEL7.1安装VNC相关的知识,希望对你有一定的参考价值。

1.安装包
yum install vnc* -y
2.创建password
vncserver
3.创建參数文件
[[email protected] ~]# cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:1.service
4.改动參数文件
[[email protected] ~]# vi /lib/systemd/system/[email protected]\:1.service
[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=forking
# Clean any existing files in /tmp/.X11-unix environment
ExecStartPre=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i"                                    --------改动处1:以root用户为例,-l后改动为username
PIDFile=/root/.vnc/%H%i.pid                                                                                  --------改动处2:.vnc前设置用户的家文件夹,root为/root
ExecStop=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘

[Install]
WantedBy=multi-user.target
5.启动
systemctl start [email protected]:1.service
6.假设想开机自启动,那么
systemctl enable [email protected]:1.service

注:假设你是第一次接触RHEL7,那么你此时肯定连接不上VNC。由于:
service iptables stop根本就关不掉防火墙!
须要:systemctl stop firewalld


以上是关于RHEL7.1安装VNC的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu安装vnc,ubuntu如何安装vnc

CentOS7.2 - 安装vnc,最小化安装vnc,命令行安装vnc,3级别安装vnc

vnc安装 vnc安装和使用(windows系统下如何使用VNC进行远程桌面控制)

vnc安装 vnc安装和使用(windows系统下如何使用VNC进行远程桌面控制)

vnc viewer windows,vnc viewer windows下如何安装vnc

在redhat下使用x11vnc进行桌面共享