博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS下安装配置VNC
阅读量:6083 次
发布时间:2019-06-20

本文共 2274 字,大约阅读时间需要 7 分钟。

原创作品,允许转载,转载时请务必以超链接形式标明文章   、作者信息和本声明。否则将追究法律责任。

1. 检查vnc客户端和服务器是否已经安装:

 

   [root@datacenter7 smdata]# rpm -q vnc vnc-server
   vnc-4.1.2-14.el5_6.6
   vnc-server-4.1.2-14.el5_6.6

 

cent os 5已包含vnc的安装包

 

2. 将用户名称加入到配置文件:

(注:这里的“用户名”是指linux系统用户的名称)

[root@datacenter7 oracle]# vi /etc/sysconfig/vncservers
# The VNCSERVERS variable is a list of display:user pairs.
#
# 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
# <URL:http://www.uk.research.att.com/archive/vnc/sshvnc.html>.
# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
# Use "-nohttpd" to prevent web-based VNC clients connecting.
# 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:oracle"
#VNCSERVERS="2:root"
#VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
#VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
VNCSERVERARGS[1]="-geometry 800x600"

 

3. 设置用户navy的密码

[oracle@datacenter7 ~]$ vncserver

Password:

Verify:

 

4. 启动VNC服务

[root@datacenter7 ~]# /sbin/service vncserver start

Starting VNC server: 1:gavin             [ OK ] 

 

5. 输入命令

 

[oracle@datacenter7 ~]$ cd .vnc/

[oracle@datacenter7 .vnc]$ vi xstartup

#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#startkde &
gnome-session &

 

6. 重启vncserver

[root@datacenter7 ~]# /sbin/service vncserver restart

 

7. Windows登陆到VNC Server

(1).从IE登录

 

直接从IE浏览器中输入如下地址:

 

http://xxx.xxx.xxx.xxx:5801

 

输入密码即可使用。

 

(2).从VNC view登录

 

在windows上安装vnc view,然后输入xxx.xxx.xxx.xxx:1,连接登录,输入密码即可。

 

备注:如果从vnc view登录时,提示connection refused(10061),则是因为linux防火墙的问题,登录centos系统,选择 System-->Preferences-->Remote Desktop,勾选sharing中的两项,Security两项不勾,点击关闭,然后再重新用vnc view登录

本文出自 “” 博客,请务必保留此出处

你可能感兴趣的文章
矩阵运算 【微软面试100题 第四十五题】
查看>>
E: Sub-process /usr/bin/dpkg returned an error code (1)
查看>>
Openshift 部署第一个应用hello-openshift
查看>>
XML学习总结
查看>>
如何利用EnteLib Unity Interception Extension 和PIAB实现Transaction
查看>>
Django中ORM介绍和字段及其参数
查看>>
[汇编学习笔记][第十七章使用BIOS进行键盘输入和磁盘读写
查看>>
【并查集合并注意!!!!】【最小生成树】
查看>>
【最大流】【HDU3572】Task Schedule
查看>>
iOS - Photo Album 图片/相册管理
查看>>
0723作业
查看>>
2016蓝桥杯 煤球数目 (代码)
查看>>
DOM&BOM
查看>>
a标签设置锚点定位div
查看>>
LightOJ 1079 Just another Robbery
查看>>
【NFS】nfs安装调优
查看>>
Linux 下子线程 exit code 在主线程中的使用
查看>>
类的实例化
查看>>
axios 获取不到数据错误
查看>>
一文掌握Docker Compose
查看>>