当前位置: > Linux服务器 > VNC >

Centos_Install VNC-Server

时间:2014-12-11 01:15来源:linux.it.net.cn 作者:IT
01.YUM安装
centos@itnetcn~# yum -y install vnc vnc-server
 
02.配置VNC
centos@itnetcn~# vncserver  
                 提示输入vnc密码或 vncpasswd 设置密码
 
centos@itnetcn~#  vi /etc/sysconfig/vncservers
    解注释或添加
    VNCSERVERS="10:root"   #10 是桌面号 root 是用户
    VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"
 
centos@itnetcn~# /etc/init.d/vncserver restart  重启服务
 
03. 设置自动启动
centos@itnetcn~# chkconfig vncserver on  
centos@itnetcn~# chkconfig --list vncserver
 
04.添加端口防火墙 允许 5910端口通过
centos@itnetcn~# iptables -I INPUT -p tcp --dport 5910 -j ACCEPT
centos@itnetcn~# service iptables save
centos@itnetcn~# service iptables restart
 
5.如果VNC连接后黑屏故障
centos@itnetcn~# vi ~/.vnc/xstartup
      #twm &             #注释掉这一行
      gnome-session &    #添加这一行
 
6.客户端使用用VNC客户端工具连接
  服务器ip地址: 端口
  例如: 192.168.0.100:5910  
 
为什么端口是5910
     因为默认端口是5900 + 桌面号 = 远程端口号
5900 + 10 = 5910  上面我设置的桌面号是10
 
(责任编辑:IT)
------分隔线----------------------------