-----------------------------------------

一、前言

二、环境

三、安装

四、配置

1.5900+x

2.5900

-----------------------------------------

一、前言

   VNC 是一款优秀的远程控制工具软件,由著名的 AT&T 的欧洲研究实验室开发的。VNC 是在基于 UNIX 和 Linux 操作系统的免费的开源软件,远程控制能力强大,高效实用,其性能可以和 Windows 和 MAC 中的任何远程控制软件媲美。 在 Linux 中,VNC 包括以下四个命令:vncserver,vncviewer,vncpasswd,和 vncconnect。大多数情况下用户只需要其中的两个命令:vncserver 和 vncviewer。

二、环境

系统:centos6.4或redhat6.5  带有桌面环境("X Window System" "Desktop")

IP:192.168.2.101/24

三、安装

# yum install tigervnc-server# rpm -ql tigervnc-server |less/etc/rc.d/init.d/vncserver/etc/sysconfig/vncservers/usr/bin/Xvnc/usr/bin/vncconfig/usr/bin/vncpasswd/usr/bin/vncserver/usr/bin/x0vncserver/usr/share/man/man1/Xvnc.1.gz/usr/share/man/man1/vncconfig.1.gz/usr/share/man/man1/vncpasswd.1.gz/usr/share/man/man1/vncserver.1.gz/usr/share/man/man1/x0vncserver.1.gz

四、配置(关闭防火墙及SELinux)

1.端口号不固定(5900+x)   和系统桌面不同步(个人使用)

# vncserverYou will require a password to access your desktops.Password:           //设置密码Verify:New 'localhost.localdomain:1 (root)' desktop is localhost.localdomain:1Creating default startup script /root/.vnc/xstartupStarting applications specified in /root/.vnc/xstartupLog file is /root/.vnc/localhost.localdomain:1.log    //端口1

这样你就可以使用vnc客户端连接服务器了,

192.168.2.101:1

# vncserver      //如果再执行一次,又会出现一个端口。

192.168.2.101:2  也可以连接。

# netstat -tupln |grep vnc             tcp        0      0 0.0.0.0:5901    0.0.0.0:*     LISTEN      28215/Xvnc       tcp        0      0 0.0.0.0:5902    0.0.0.0:*     LISTEN      28473/Xvnc                tcp        0      0 0.0.0.0:6001    0.0.0.0:*     LISTEN      28215/Xvnc       tcp        0      0 0.0.0.0:6002    0.0.0.0:*     LISTEN      28473/Xvnc                tcp        0      0 :::6001         :::*          LISTEN      28215/Xvnc       tcp        0      0 :::6002         :::*          LISTEN      28473/Xvnc                                                          # vncserver -kill :1    //杀掉第一个端口(5901)# vncpasswd             //修改密码

2. x0vncserver  固定端口5900   和系统桌面同步(教学使用)

# x0vncserver PasswordFile=/root/.vnc/passwd   //必须在服务器系统桌面下执行,密码使用第一次设置的密码。# netstat -tupln |grep vnctcp   0   0  0.0.0.0:5900  0.0.0.0:*     LISTEN      29517/x0vncserver

直接输入服务器地址即可,默认使用5900端口。

附:

1.在xshell命令符下执行,能连接上,但不能正常显示桌面。

2.在系统自身字符下执行,同样能连接上,但不能正常显示桌面:

# x0vncserver PasswordFile=/root/.vnc/passwdx0vncserver :unable to open dispaly ""# export DISPLAY=192.168.2.1:0.0# x0vncserver PasswordFile=/root/.vnc/passwd