码迷,mamicode.com
首页 > 其他好文 > 详细

centos 7.6 配置VNC

时间:2019-09-29 21:45:27      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:reload   设置   形式   user   load   输入密码   emc   service   systemctl   

一、安装

1.  以root用户运行以下命令来安装vncserver;

yum install tigervnc-server 

2.  同样运行以下命令来安装vncviewer;

yum install vnc

3.  停止并禁用防火墙;

systemctl stop firewalld.service

systemctl disable firewalld.service

二、拷贝配置文件

cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service

vim /etc/systemd/system/vncserver@:1.service

设置用户root相关参数(将文中的“<USER>”替换为你系统的用户名,有2个地方

改好后如下:

ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i"

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

三、

1.  更新systemctl以使其生效;

systemctl daemon-reload 

2.  设置vncserver的密码;

vncpasswd root

按提示输入密码以及确认密码

3.  启动该服务用来启用vnc的1号窗口;

systemctl start vncserver@:1.service  或者 vncserver :1

关闭1号窗口:

systemctl stop vncserver@:1.service   或者 vncserver -kill :1

4.  设置为开机自动启动;

systemctl enable vncserver@:1.service

客户端连接的时候 用ip:1的形式连接。



 

centos 7.6 配置VNC

标签:reload   设置   形式   user   load   输入密码   emc   service   systemctl   

原文地址:https://www.cnblogs.com/alantop/p/11609990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!