Centos6 yum安装VNC-server

一、 环境

Linux操作系统: centos6.9

 

二、安装步骤

1、 检查是否已经安装了vnc-server

[root@VM_0_11_centos ~]# rpm -q tigervnc tigervnc-server
package tigervnc is not installed
package tigervnc-server is not installed

  以上 is not installed 表示未安装

2、 查看vnc-server版本

[root@VM_0_11_centos ~]# yum list tigervnc-server
Loaded plugins: fastestmirror, priorities, security
Repository epel is listed more than once in the configuration
Loading mirror speeds from cached hostfile
 * webtatic: sp.repo.webtatic.com
epel                                                                                | 3.2 kB     00:00     
epel/primary                                                                        | 3.2 MB     00:00     
epel                                                                                           12518/12518
extras                                                                              | 3.4 kB     00:00     
mongodb-org-3.4                                                                     | 2.5 kB     00:00     
nginx                                                                               | 2.9 kB     00:00     
nodesource                                                                          | 2.5 kB     00:00     
os                                                                                  | 3.7 kB     00:00     
updates                                                                             | 3.4 kB     00:00     
webtatic                                                                            | 3.6 kB     00:00     
Available Packages
tigervnc-server.x86_64                                   1.1.0-24.el6                                    os

3、 安装vnc-server

[root@VM_0_11_centos ~]# yum install tigervnc-server

   安装包有点大,请耐心等待

4、 配置vnc-server

   打开配置文件目录并编辑配置文件

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

   找到以下信息:

   

   去掉注释并修改为:

    

    vncservers处表示系统登录用户  冒号前面表示端口号, 默认从5900开始, 1表示5901,2表示5902 ,如果是设置其他的端口就要全部写完  例如  8080端口,就是8080:root

    vncserverargs配置vnc的参数: 800*600分辨率、-nolisten tcp是否允许多用户连接、-localhost是否允许远程连接

5、 输入命令启动vnc服务

  初始启动时需要配置远程用户连接vnc时输入的密码

[root@VM_0_11_centos ~]# vncserver

You will require a password to access your desktops.

Password:
Verify:
xauth:  file /root/.Xauthority does not exist

New 'VM_0_11_centos:1 (root)' desktop is VM_0_11_centos:1

Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/VM_0_11_centos:1.log

6、 修改vnc远程连接的密码

[root@VM_0_11_centos ~]# vncpasswd
Password:
Verify:

7、 测试远程是否可以连接

  输入命令查看端口号

[root@VM_0_11_centos ~]# vncserver -list

TigerVNC server sessions:

X DISPLAY #	PROCESS ID
:1		6365
:2		6415

  上面 X DISPLAY 表示连接的端口号

  打开vnc客户端,输入远程主机的ip地址+端口号和连接密码

  Centos6 yum安装VNC-server_第1张图片

  进入之后如果显示如下的黑屏,则需要安装图形化桌面

Centos6 yum安装VNC-server_第2张图片

   安装图形化桌面

[root@VM_0_11_centos ~]# yum groupinstall desktop

   文件大小为140m左右,需要耐心等待


   安装完成后,重启vncserver服务

[root@VM_0_11_centos ~]# service vncserver restart
Shutting down VNC server: 1:root                           [  OK  ]
Starting VNC server: 1:root 
New 'VM_0_11_centos:1 (root)' desktop is VM_0_11_centos:1

Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/VM_0_11_centos:1.log

                                                           [  OK  ]

  重新连接vnc

Centos6 yum安装VNC-server_第3张图片

你可能感兴趣的:(服务器配置)