感谢支持
我们一直在努力

Linux VNC Server 安装配置

1.安装vnc server

[root@linuxidc ~]# yum install tigervnc-server -y

2.设置 vnc server 开机启动

[root@linuxidc ~]# chkconfig vncserver on

3.修改vncserver 配置文件

[root@linuxidc ~]# vi /etc/sysconfig/vncservers

在配置文件后添加以下内容

VNCSERVERS=”2:root”

VNCSERVERARGS[2]=”-geometry 1366×768 -nolisten tcp”

设置vncserver 的密码

[root@linuxidc ~]# vncpasswd

Password:

Verify:

4.启动sncserver 服务

[root@linuxidc ~]# /etc/init.d/vncserver start

5.使用VNC Viewer 远程连接

CentOS7配置VNC

1.卸载系统默认安装的vnc所有软件包 //GUI界面software卸载所有vnc相关包 2.yum -y install tigervnc-server tigervnc

3.centos7之前版本系统默认安装路径是/etc/sysconfig/vncserver

4.centos7版本默认安装文件路径是/lib/systemd/system/vncserver@.service 5.改名配置文件vncserver@.service cp /lib/systemd/system/vncserver@:1.service 6.修改配置文件vi /lib/systemd/system/vncserver@:1.service  【替换成你的当前用户root,将%i替换为1】

ExecStart=/sbin/runuser -l root -c “/usr/bin/vncserver :1 -geometry 1280×720 -depth 24” PIDFile=/root/.vnc/%H%i.pid

ExecStop=/bin/sh -c ‘/usr/bin/vncserver -kill :1 > /dev/null 2>&1 || :’

7.更新systemctl  // systemctl daemon-reload

8.设置vnc服务自动启动 // systemctl enable vncserver@:1.service 9.启动vnc服务 // systemctl start vncserver@:1.service 10.加入iptables端口5901规则 //

-A INPUT -p tcp -m state –state NEW -m tcp –dport 22 -j ACCEPT -A INPUT -p tcp -m state –state NEW -m tcp –dport 5901 -j ACCEPT 11.服务自动启动 // systemctl enable vncserver@:1.service 12.启动vnc服务 // systemctl start vncserver@:1.service 13.允许防火墙通过vnc  // firewall-cmd –permanent –add-service vnc-server 14.重启启动防火墙 // systemctl restart firewall.service

一.安装

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

yum install tigervnc-server

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

yum install vnc

停止并禁用防火墙;

systemctl stop firewalld.service

systemctl disable firewalld.service

二.配置

vncviewer基本上不用配置;

vncserver的配置,创建一个新的配置文件,以开启1号窗口为例(也可以同时开启多个窗口,修改数字即可),方法如下:

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

或者再增加一个窗口:

cp /lib/systemd/system/vncserver@.service /lib/systemd/system/vncserver@:2.service

编辑/lib/systemd/system/vncserver@:1.service,设置用户root相关参数

[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 -geometry 800×600”

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

ExecStop=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :’

三.应用

更新systemctl以使其生效;

systemctl daemon-reload

设置vncserver的密码;

vncpasswd root

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

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

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

关闭1号窗口:

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

设置为开机自动启动;

systemctl enable vncserver@:1.service

End.

Ubuntu启用VNC服务的配置 http://www.linuxidc.com/Linux/2016-08/133917.htm

CentOS 6.5 安装VNC Server实现图形化访问  http://www.linuxidc.com/Linux/2015-12/126262.htm 

VNC的安装配置 http://www.linuxidc.com/Linux/2013-05/84941.htm 

CentOS 6.3安装和配置VNC http://www.linuxidc.com/Linux/2013-05/84668.htm 

Linux下强制不检测依赖安装VNC http://www.linuxidc.com/Linux/2013-05/84075.htm 

CentOS6 VNC服务安装配置 http://www.linuxidc.com/Linux/2013-04/82510.htm 

CentOS下VNC配置和安装  http://www.linuxidc.com/Linux/2013-05/83975.htm 

VNC远程控制安装和设置 http://www.linuxidc.com/Linux/2013-01/77769.htm 

RHEL7 配置VNC远程桌面 http://www.linuxidc.com/Linux/2017-02/140165.htm

CentOS 7下安装配置 VNC Server http://www.linuxidc.com/Linux/2016-07/132835.htm

本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-02/140798.htm

赞(0) 打赏
转载请注明出处:服务器评测 » Linux VNC Server 安装配置
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏