RHEL7.1配置VNC
Posted 丹心明月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RHEL7.1配置VNC相关的知识,希望对你有一定的参考价值。
1.安装包 yum install vnc* -y 2.创建密码 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后修改为用户名 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 如果使用其他用户登录,需要 vncpasswd user_name 5.启动 systemctl start [email protected]:1.service 6.如果想开机自启动,那么 systemctl enable [email protected]:1.service 注:如果你是第一次接触RHEL7,那么你此时肯定连接不上VNC,因为: service iptables stop根本就关不掉防火墙! 需要:systemctl stop firewalld 禁止防火墙开机自启动: [[email protected] ~]# systemctl disable firewalld rm '/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service' rm '/etc/systemd/system/basic.target.wants/firewalld.service'
以上是关于RHEL7.1配置VNC的主要内容,如果未能解决你的问题,请参考以下文章