Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6895475
  • 博文数量: 3857
  • 博客积分: 6409
  • 博客等级: 准将
  • 技术积分: 15948
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-02 16:48
个人简介

迷彩 潜伏 隐蔽 伪装

文章分类

全部博文(3857)

文章存档

2017年(5)

2016年(63)

2015年(927)

2014年(677)

2013年(807)

2012年(1241)

2011年(67)

2010年(7)

2009年(36)

2008年(28)

分类: LINUX

2014-12-23 12:16:18

原文地址:vnc server 配置 作者:baochenggood

一,软件安装
 
系统环境CentOS .65 X64
服务器桌面安装:  yum groupinstall -y   "Desktop"   "Desktop Platform"   "Desktop Platform Development"  
桌面软件安装完毕执行#  startx 或者直接重启都行

vnc 依赖软件安装:yum -y install pixman pixman-devel libXfont  tigervnc tigervnc-server



二,修改配置文件

vim /etc/sysconfig/vncservers
# Uncomment the lines below to start a VNC server on display :2
# as my 'myusername' (adjust this to your own).  You will also
# need to set a VNC password; run 'man vncpasswd' to see how
# to do that.  
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted!  For a secure way of using VNC, see this URL:
#
         
# 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"  #多用户访问“1:root2:user”
 VNCSERVERARGS[1]="-geometry 800x600 "
VNCSERVERARGS[2]="-geometry 800x600 "
 VNCSERVERARGS[3]="-geometry 800x600 "
 VNCSERVERARGS[4]="-geometry 800x600 " 
 VNCSERVERARGS[5]="-geometry 800x600 "
 VNCSERVERARGS[6]="-geometry 800x600 "
 VNCSERVERARGS[7]="-geometry 800x600 "
 VNCSERVERARGS[8]="-geometry 800x600 "

三,设置访问密码
vncpasswd 输入访问密码 不同的用户在不不同的用户下设置
四,重启服务:
[root@localhost ~]# service vncserver restart
Shutting down VNC server: 2:root                           [  OK  ]
Starting VNC server: 2:root 
New 'localhost.localdomain:2 (root)' desktop is localhost.localdomain:2


Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/localhost.localdomain:2.log


                                                           [  OK  ]

五,开启多个界面

  vncserver :1

  vncserver :2

      。
      。


    vnserver :8
六.防火墙开例外:

iptables防火墙常常会阻止vnc远程桌面,所以需要在iptables允许,用如下命令

iptables -I INPUT -p tcp --dport 5901 -j ACCEPT   #默认端口5901
service iptables save

七,测试




阅读(783) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~