Linux(RHEL6\CENTOS6\OLE6) 下VNC-SERVER安装与配置

1.安装并启动tigervnc-server
 # rpm -ivh tigervnc-1.1.0-16.el6.x86_64.rpm
 warning: tigervnc-1.1.0-16.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
 Preparing...                ########################################### [100%]
    1:tigervnc              ########################################### [100%]

 # rpm -ivh tigervnc-server-1.1.0-5.el6.x86_64.rpm
 warning: tigervnc-server-1.1.0-5.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
 error: Failed dependencies:
        xorg-x11-fonts-misc is needed by tigervnc-server-1.1.0-5.el6.x86_64

 # rpm -ivh tigervnc-server-1.1.0-5.el6.x86_64.rpm
 warning: tigervnc-server-1.1.0-5.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
 Preparing...                ########################################### [100%]
    1:tigervnc-server        ########################################### [100%]

 # vncserver

 You will require a password to access your desktops.

 Password:
 Verify:

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

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

2.修改配置文件
# vim /root/.vnc/xstartup

#!/bin/sh

 # vim /etc/sysconfig/vncservers

 # Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
 

 # Use "-localhost" to prevent remote VNC clients connecting except when
 # doing so through a secure tunnel. See the "-via" option in the
 # `man vncviewer' manual page.
 

 VNCSERVERS="1:root"
 # VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"

重启vncserver服务
# service vncserver restart

猜你喜欢

转载自www.linuxidc.com/Linux/2015-12/125862.htm