通过VNC升级远程oracle 10.2.0.1到10.2.0.4.docx
文本预览下载声明
About MeMy name is daixuejun.I come from GanSuZhangYe.I graduated from the LanZhouUniversity.I was born on January 16 1978.My wife Wei Ye is a Surveying Engineer.My university major is computer.I like my major.I have two lovely daughters.I have a wide range of interests and hobbies.such as singingplayingbasketballbilliardsbadmintonmountail climbing tourism etc.Thecomputer.I took advantage of the database.there are oracle db2 operating system of my advantages are obvious.there are unixlinux close 8~9 year related experience.I experienced a lot of large-scale database associated with the project.such as the GanSu province Second generation Id card system construction project.East china power grid data replication.disaster recovery project.These are my brief personal introduction.通过linux VNC升级远程oracle 到(V1.0)中国电信集团有限公司江苏分公司代学俊一、升级补丁准备下载补丁包p6810189_10204_Linux-x86.zip并解压:[oracle@oracle ~]$ unzip p6810189_10204_Linux-x86.zip二、VNC服务配置部分以下是VNC SERVER 的配置:1、确认VNC是否安装:[root@oracle ~]# rpm -qavnc-servervnc-server-4.1.2-14.el5_3.1[root@oracle ~]#若系统没有安装,可以到操作系统安装介质的Server目录下去找安装包2、启动VNC服务root用户:[root@oracle ~]# vncserver :1oracle用户:[oracle@oracle ~]$ vncserver :2使用vncserver命令启动vnc服务,命令格式为”vncserver :桌面号”,其中”桌面号”用”数字”的方式表示,每个用户需要占用1个桌面3、vnc服务使用的端口号与桌面号相关,vnc使用TCP端口从5900开始,对应关系如下桌面号为”1”端口号为5901桌面号为”2”端口号为5902桌面号为”3”端口号为5903……基于上面的介绍,如果Linux开启了防火墙功能,就需要手工开启相应的端口,以开启桌面号为”1”相应的端口为例,命令如下:[root@oracle ~]# iptables -I INPUT -p tcp --dport 5901 -j ACCEPT[root@oracle ~]# iptables -I INPUT -p tcp --dport 5801 -j ACCEPT5、配置VNC图形桌面环境为KDE或GNOME如下:root用户:[root@oracle ~]# cat /root/.vnc/xstartup#!/bin/sh# Uncomment the following two lines for normal desktop:unset SESSION_MANAGERexec /etc/X11/xinit/xinitrc[ -x /etc/vnc/xstartup ] exec /etc/vnc/xstartup[ -r $HOME/.Xresources ] xrdb $HOME/.Xresourcesxsetroot -solid greyvncconfig -iconic xterm -geometry 80x24+10+10 -ls -title $VNCDESKTOP Desktop startkde [root@oracle ~]#oracle用户:[oracle@oracle ~]$ cat /home/oracle/.vnc/xstartup#!/bin/shUncomme
显示全部