[TOC]

一,预安装处理

1.版本准备
  • 操作系统:RHEL 6.5
  • 数据库版本:Oracle 11.2.0.4
  • 相关包:p13390677_112040_Linux-x86-64_1of7.zip
                  p13390677_112040_Linux-x86-64_2of7.zip
                  p21352635_112040_Linux-x86-64.zip
                  OPatch-p6880880_112000_Linux-x86-64.zip
  • 位置:/tmp目录
2.系统配置

(1)内核参数

    1. cat >> /etc/sysctl.conf<<EOF
    1. #ORACLE SETTING
    1. fs.aio-max-nr = 1048576
    1. fs.file-max = 6815744
    1. kernel.shmall = 2097152
    1. kernel.shmmax = 4181979136
    1. kernel.shmmni = 4096
    1. kernel.sem = 250 32000 100 128
    1. net.ipv4.ip_local_port_range = 9000 65500
    1. net.core.rmem_default = 262144
    1. net.core.rmem_max = 4194304
    1. net.core.wmem_default = 262144
    1. net.core.wmem_max = 1048576
    1. EOF

生效

    1. sysctl -p

(2)限制

    1. cat >> /etc/security/limits.conf<<EOF
    1. #ORACLE SETTING
    1. oracle soft nproc 2047
    1. oracle hard nproc 16384
    1. oracle soft nofile 1024
    1. oracle hard nofile 65536
    1. EOF
    1. cat >> /etc/pam.d/login<<EOF
    1. session required pam_limits.so
    1. EOF

(3)依赖包
下面为官方推荐Oracle Linux 6, Red Hat Enterprise Linux 6, and Asianux Server 4安装软件包

    1. binutils-2.20.51.0.2-5.11.el6 (x86_64)
    1. compat-libcap1-1.10-1 (x86_64)
    1. compat-libstdc++-33-3.2.3-69.el6 (x86_64)
    1. compat-libstdc++-33-3.2.3-69.el6.i686
    1. gcc-4.4.4-13.el6 (x86_64)
    1. gcc-c++-4.4.4-13.el6 (x86_64)
    1. glibc-2.12-1.7.el6 (i686)
    1. glibc-2.12-1.7.el6 (x86_64)
    1. glibc-devel-2.12-1.7.el6 (x86_64)
    1. glibc-devel-2.12-1.7.el6.i686
    1. ksh
    1. libgcc-4.4.4-13.el6 (i686)
    1. libgcc-4.4.4-13.el6 (x86_64)
    1. libstdc++-4.4.4-13.el6 (x86_64)
    1. libstdc++-4.4.4-13.el6.i686
    1. libstdc++-devel-4.4.4-13.el6 (x86_64)
    1. libstdc++-devel-4.4.4-13.el6.i686
    1. libaio-0.3.107-10.el6 (x86_64)
    1. libaio-0.3.107-10.el6.i686
    1. libaio-devel-0.3.107-10.el6 (x86_64)
    1. libaio-devel-0.3.107-10.el6.i686
    1. make-3.81-19.el6
    1. sysstat-9.0.4-11.el6 (x86_64)

检查缺失包

    1. rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n' binutils \
    1. compat-libcap1 \
    1. compat-libstdc++ \
    1. compat-libstdc++.i686 \
    1. gcc \
    1. gcc-c++ \
    1. glibc.i686 \
    1. glibc \
    1. glibc-devel \
    1. glibc-devel.i686 \
    1. ksh \
    1. libgcc.i686 \
    1. libgcc \
    1. libstdc++ \
    1. libstdc++.i686 \
    1. libstdc++-devel \
    1. libstdc++-devel.i686 \
    1. libaio \
    1. libaio.i686 \
    1. libaio-devel \
    1. libaio-devel.i686 \
    1. make \
    1. sysstat \
    1. unixODBC \
    1. unixODBC-devel

安装显示not install的包
(4)创建所需用户和组

    1. groupadd -g 501 oinstall
    1. groupadd -g 502 dba
    1. groupadd -g 503 oper
    1. useradd -g oinstall -G dba oracle

设置密码:

    1. passwd oracle

(5)创建所需目录

    1. chmod -R 777 /oracle
    1. chmod -R 770 /oracle/app/
    1. chmod -R 775 /oracle/app/oracle/
    1. mkdir -p /oracle/app/oracle
    1. chown -R oracle:oinstall /oracle/app/oracle/
    1. chown -R oracle:oinstall app/

(6)配置环境变量

    1. su - oracle
    1. vi .bash_profile
    1. 添加下面的内容:
    1. ##################################################
    1. # User specific environment and startup programs
    1. ##################################################
    1. export ORACLE_BASE=/oracle/app/oracle
    1. export ORACLE_HOME=$ORACLE_BASE/product/11.2.0
    1. export ORACLE_PATH=$ORACLE_BASE/common/oracle/sql:.:$ORACLE_HOME/rdbms/admin
    1. export ORACLE_SID=PROD
    1. export PATH=${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin:$ORACLE_HOME/bin
    1. export ORACLE_TERM=xterm  
    1. #export TNS_ADMIN=$ORACLE_HOME/network/admin
    1. export LD_LIBRARY_PATH=$ORACLE_HOME/lib  
    1. export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$ORACLE_HOME/oracm/lib  
    1. export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/lib:/usr/lib:/usr/local/lib
    1. export CLASSPATH=$ORACLE_HOME/JRE  
    1. export CLASSPATH=${CLASSPATH}:$ORACLE_HOME/jlib  
    1. export CLASSPATH=${CLASSPATH}:$ORACLE_HOME/rdbms/jlib  
    1. export CLASSPATH=${CLASSPATH}:$ORACLE_HOME/network/jlib  
    1. export THREADS_FLAG=native  
    1. export TEMP=/tmp  
    1. export TMPDIR=/tmp  
    1. ##################################################  
    1. # set NLS_LANG to resolve messy code in SQLPLUS  
    1. ##################################################  
    1. export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1  
    1. ##################################################  
    1. # Shell setting.  
    1. ##################################################  
    1. umask 022  
    1. set -o vi  
    1. export PS1="\${ORACLE_SID}@`hostname`  \${PWD}$ "
    1. ##################################################
    1. # Oracle Alias
    1. ##################################################
    1. alias ls="ls -FA"
    1. alias vi=vim
    1. alias base='cd $ORACLE_BASE'  
    1. alias home='cd $ORACLE_HOME'
    1. alias alert='tail -200f $ORACLE_BASE/admin/RACDB/bdump/alert_$ORACLE_SID.log'
    1. alias tnsnames='vi $ORACLE_HOME/network/admin/tnsnames.ora'  
    1. alias listener='vi $ORACLE_HOME/network/admin/listener.ora'

说明:ORACLE_SID与字符集等环境变量根据实际要求修改

二,安装oracle软件

1.通过xmanager中xstart启动图形界面

2.执行如下命令,启动图形界面


如果出现下面乱码,修改临时环境变量

    1. export LANG=en_US

3.外网不通,不更新软件,最后打补丁,NEXT


YES

4.跳过软件更新,NEXT

5.仅安装数据库软件,NEXT

6.安装单实例,NEXT

7.语言选择,NEXT

8.安装企业版,NEXT

9.环境变量中已配置ORACLE_BASE和ORACLE_HOME,检查无误后,NEXT

10.清单目录,NEXT

11.选择相应的组,默认,NEXT

12.如与不满足的条件,可以先点击Fix&check again修复


pdksh可以忽略

开始安装

13.root用户执行下面两个脚本,执行完成后点击OK

14.安装完成

三,打最新patch

1.更新OPatch
    1. [oracle@localhost software]$ $ORACLE_HOME/OPatch/opatch version
    1. OPatch Version: 11.2.0.3.4
    1. OPatch succeeded.
    1. [oracle@localhost software]$ cp OPatch-p6880880_112000_Linux-x86-64.zip $ORACLE_HOME
    1. [oracle@localhost software]$ cd $ORACLE_HOME
    1. [oracle@localhost 11.2.0]$ mv OPatch OPatch_100057_OLD 
    1. [oracle@localhost 11.2.0]$ unzip OPatch-p6880880_112000_Linux-x86-64.zip
    1. [oracle@localhost 11.2.0]export PATH=$PATH:$ORACLE_HOME/OPatch
    1. ---查看当前补丁情况
    1. [oracle@localhost 11.2.0]$ opatch lsinventory
    1. Oracle 中间补丁程序安装程序版本 11.2.0.3.6
    1. 版权所有 (c) 2013, Oracle Corporation。保留所有权利。
    1. Oracle Home : /oracle/app/oracle/product/11.2.0
    1. Central Inventory : /oracle/app/oraInventory
    1. from : /oracle/app/oracle/product/11.2.0/oraInst.loc
    1. OPatch version : 11.2.0.3.6
    1. OUI version : 11.2.0.4.0
    1. Log file location : /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/opatch2015-11-09_17-43-41下午_1.log
    1. Lsinventory Output file location : /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/lsinv/lsinventory2015-11-09_17-43-41下午.txt
    1. --------------------------------------------------------------------------------
    1. 已安装的顶级产品 (1):
    1. Oracle Database 11g 11.2.0.4.0
    1. Oracle 主目录中已安装 1 个产品。
    1. Oracle 主目录中未安装任何中间补丁程序。
    1. --------------------------------------------------------------------------------
    1. OPatch succeeded.
2.打补丁前检查
    1. [oracle@localhost 11.2.0]$ cd /oracle/software/21352635/
    1. [oracle@localhost 21352635]$
    1. [oracle@localhost 21352635]
    1. [oracle@localhost 21352635]$ ls -l
    1. 总用量 88
    1. drwxr-xr-x 4 root root 4096 9 1 15:50 17478514/
    1. drwxr-xr-x 4 root root 4096 9 1 15:50 18031668/
    1. drwxr-xr-x 4 root root 4096 9 1 15:50 18522509/
    1. drwxr-xr-x 4 root root 4096 9 1 15:50 19121551/
    1. drwxrwxr-x 4 root root 4096 9 1 15:50 19769489/
    1. drwxrwxr-x 4 root root 4096 9 1 15:50 20299013/
    1. drwxrwxr-x 4 root root 4096 9 1 15:50 20760982/
    1. drwxrwxr-x 4 root root 4096 9 1 15:50 21352635/
    1. -rw-r--r-- 1 root root 3068 9 1 15:51 patchmd.xml
    1. -rw-rw-r-- 1 root root 48324 10 17 06:06 README.html
    1. -rw-r--r-- 1 root root 21 9 1 15:51 README.txt
    1. [oracle@localhost 21352635]$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./
    1. Oracle 中间补丁程序安装程序版本 11.2.0.3.6
    1. 版权所有 (c) 2013, Oracle Corporation。保留所有权利。
    1. PREREQ session
    1. Oracle Home : /oracle/app/oracle/product/11.2.0
    1. Central Inventory : /oracle/app/oraInventory
    1. from : /oracle/app/oracle/product/11.2.0/oraInst.loc
    1. OPatch version : 11.2.0.3.6
    1. OUI version : 11.2.0.4.0
    1. Log file location : /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/opatch2015-11-09_17-44-30下午_1.log
    1. Invoking prereq "checkconflictagainstohwithdetail"
    1. Prereq "checkConflictAgainstOHWithDetail" passed.
    1. OPatch succeeded.
    1. [oracle@localhost 21352635]$
3.应用补丁
    1. [oracle@localhost 21352635]$ opatch apply
    1. Oracle 中间补丁程序安装程序版本 11.2.0.3.6
    1. 版权所有 (c) 2013, Oracle Corporation。保留所有权利。
    1. Oracle Home : /oracle/app/oracle/product/11.2.0
    1. Central Inventory : /oracle/app/oraInventory
    1. from : /oracle/app/oracle/product/11.2.0/oraInst.loc
    1. OPatch version : 11.2.0.3.6
    1. OUI version : 11.2.0.4.0
    1. Log file location : /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/opatch2015-11-09_17-45-26下午_1.log
    1. Verifying environment and performing prerequisite checks...
    1. OPatch continues with these patches: 17478514 18031668 18522509 19121551 19769489 20299013 20760982 21352635
    1. 是否继续? [y|n]
    1. y
    1. User Responded with: Y
    1. All checks passed.
    1. 提供电子邮件地址以用于接收有关安全问题的通知, 安装 Oracle Configuration Manager 并启动它。如果您使用 My Oracle
    1. Support 电子邮件地址/用户名, 操作将更简单。
    1. 有关详细信息, 请访问 http://www.oracle.com/support/policies.html。
    1. 电子邮件地址/用户名:
    1. 尚未提供电子邮件地址以接收有关安全问题的通知。
    1. 是否不希望收到有关安全问题 (是 [Y], [N]) [N] 的通知: y
    1. 请关闭本地系统上在此 ORACLE_HOME 之外运行的 Oracle 实例。
    1. (Oracle 主目录 = '/oracle/app/oracle/product/11.2.0')
    1. 本地系统是否已准备打补丁? [y|n]
    1. y
    1. User Responded with: Y
    1. Backing up files...
    1. Applying sub-patch '17478514' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sdo, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sysman.agent, 10.2.0.4.5 打补丁...
    1. 正在为组件 oracle.xdk, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sdo.locator, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.nlsrtl.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.xdk.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '18031668' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.ldap.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.crs, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.precomp.common, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.ldap.rsf.ic, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.deconfig, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '18522509' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.precomp.common, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.deconfig, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '19121551' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.precomp.common, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sysman.console.db, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.ordim.client, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.ordim.jai, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '19769489' to OH '/oracle/app/oracle/product/11.2.0'
    1. ApplySession: Oracle 主目录中不存在可选组件 [ oracle.sysman.agent, 11.2.0.4.0 ] , 或找到更高版本。
    1. 正在为组件 oracle.precomp.common, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.ovm, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.xdk, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.util, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.xdk.parser.java, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.oraolap, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.xdk.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.deconfig, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '20299013' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.rdbms.dv, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.oci, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.precomp.common, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sysman.agent, 10.2.0.4.5 打补丁...
    1. 正在为组件 oracle.xdk, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sysman.common, 10.2.0.4.5 打补丁...
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.xdk.parser.java, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sysman.console.db, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.xdk.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.sysman.common.core, 10.2.0.4.5 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.deconfig, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '20760982' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.sysman.console.db, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.dbscripts, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Applying sub-patch '21352635' to OH '/oracle/app/oracle/product/11.2.0'
    1. 正在为组件 oracle.sysman.agent, 10.2.0.4.5 打补丁...
    1. 正在为组件 oracle.rdbms.rsf, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms.rman, 11.2.0.4.0 打补丁...
    1. 正在为组件 oracle.rdbms, 11.2.0.4.0 打补丁...
    1. Verifying the update...
    1. Composite patch 21352635 successfully applied.
    1. Log file location: /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/opatch2015-11-09_17-45-26下午_1.log
    1. OPatch succeeded.
4.成功后检查
    1. [oracle@localhost 21352635]$ opatch lsinventory
    1. Oracle 中间补丁程序安装程序版本 11.2.0.3.6
    1. 版权所有 (c) 2013, Oracle Corporation。保留所有权利。
    1. Oracle Home : /oracle/app/oracle/product/11.2.0
    1. Central Inventory : /oracle/app/oraInventory
    1. from : /oracle/app/oracle/product/11.2.0/oraInst.loc
    1. OPatch version : 11.2.0.3.6
    1. OUI version : 11.2.0.4.0
    1. Log file location : /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/opatch2015-11-09_17-48-17下午_1.log
    1. Lsinventory Output file location : /oracle/app/oracle/product/11.2.0/cfgtoollogs/opatch/lsinv/lsinventory2015-11-09_17-48-17下午.txt
    1. --------------------------------------------------------------------------------
    1. 已安装的顶级产品 (1):
    1. Oracle Database 11g 11.2.0.4.0
    1. Oracle 主目录中已安装 1 个产品。
    1. 中间补丁程序 (1) :
    1. Patch 21352635 : applied on Mon Nov 09 17:47:40 CST 2015
    1. Unique Patch ID: 19227862
    1. Patch description: "Database Patch Set Update : 11.2.0.4.8 (21352635)"
    1. Created on 1 Sep 2015, 07:49:44 hrs
    1. Sub-patch 20760982; "Database Patch Set Update : 11.2.0.4.7 (20760982)"
    1. Sub-patch 20299013; "Database Patch Set Update : 11.2.0.4.6 (20299013)"
    1. Sub-patch 19769489; "Database Patch Set Update : 11.2.0.4.5 (19769489)"
    1. Sub-patch 19121551; "Database Patch Set Update : 11.2.0.4.4 (19121551)"
    1. Sub-patch 18522509; "Database Patch Set Update : 11.2.0.4.3 (18522509)"
    1. Sub-patch 18031668; "Database Patch Set Update : 11.2.0.4.2 (18031668)"
    1. Sub-patch 17478514; "Database Patch Set Update : 11.2.0.4.1 (17478514)"
    1. Bugs fixed:
    1. 17288409, 21051852, 18607546, 17205719, 17811429, 17816865, 20506699
    1. 17922254, 17754782, 16934803, 13364795, 17311728, 17441661, 17284817
    1. 16992075, 17446237, 14015842, 19972569, 21538558, 20925795, 17449815
    1. 17375354, 19463897, 17982555, 17235750, 13866822, 18317531, 17478514
    1. 18235390, 14338435, 20803583, 13944971, 20142975, 17811789, 16929165
    1. 18704244, 20506706, 17546973, 20334344, 14054676, 17088068, 18264060
    1. 17346091, 17343514, 21538567, 19680952, 18471685, 19211724, 13951456
    1. 16315398, 18744139, 16850630, 19049453, 18673304, 17883081, 19915271
    1. 18641419, 18262334, 17006183, 16065166, 18277454, 16833527, 10136473
    1. 18051556, 17865671, 17852463, 18554871, 17853498, 18334586, 17588480
    1. 17551709, 19827973, 17842825, 17344412, 18828868, 17025461, 11883252
    1. 13609098, 17239687, 17602269, 19197175, 18316692, 17313525, 12611721
    1. 19544839, 18964939, 17600719, 18191164, 19393542, 17571306, 18482502
    1. 20777150, 19466309, 17040527, 17165204, 18098207, 16785708, 17174582
    1. 16180763, 17465741, 16777840, 12982566, 19463893, 12816846, 16875449
    1. 17237521, 19358317, 17811438, 17811447, 17945983, 18762750, 17184721
    1. 16912439, 18061914, 17282229, 18331850, 18202441, 17082359, 18723434
    1. 19554106, 14034426, 18339044, 19458377, 17752995, 20448824, 17891943
    1. 17258090, 17767676, 16668584, 18384391, 17040764, 17381384, 15913355
    1. 18356166, 14084247, 20506715, 13853126, 18203837, 14245531, 16043574
    1. 17848897, 17877323, 17468141, 17786518, 17912217, 17037130, 18155762
    1. 16956380, 17478145, 17394950, 18189036, 18641461, 18619917, 17027426
    1. 21352646, 16268425, 19584068, 18436307, 17265217, 17634921, 13498382
    1. 20004087, 17443671, 18000422, 20004021, 17571039, 21067387, 16344544
    1. 18009564, 14354737, 18135678, 18614015, 20441797, 18362222, 17835048
    1. 16472716, 17936109, 17050888, 17325413, 14010183, 18747196, 17761775
    1. 16721594, 17082983, 20067212, 21179898, 17302277, 18084625, 15990359
    1. 18203835, 17297939, 17811456, 16731148, 17215560, 13829543, 14133975
    1. 17694209, 18091059, 17385178, 8322815, 17586955, 17201159, 17655634
    1. 18331812, 19730508, 18868646, 17648596, 16220077, 16069901, 17348614
    1. 17393915, 17274537, 17957017, 18096714, 17308789, 18436647, 14285317
    1. 19289642, 14764829, 18328509, 17622427, 16943711, 14368995, 17346671
    1. 18996843, 17783588, 16618694, 17672719, 18856999, 18783224, 17851160
    1. 17546761, 17798953, 18273830, 19972566, 16384983, 17726838, 17360606
    1. 13645875, 18199537, 16542886, 17889549, 14565184, 17071721, 20299015
    1. 17610798, 20657441, 17397545, 18230522, 16360112, 19769489, 12905058
    1. 18641451, 12747740, 18430495, 17042658, 17016369, 14602788, 19972568
    1. 18508861, 19788842, 14657740, 17332800, 13837378, 19972564, 17186905
    1. 18315328, 19699191, 17437634, 19006849, 19013183, 17296856, 18674024
    1. 17232014, 16855292, 21051840, 14692762, 17762296, 17705023, 19121551
    1. 19854503, 19309466, 18681862, 18554763, 20558005, 17390160, 18456514
    1. 16306373, 13955826, 18139690, 17501491, 17299889, 17752121, 17889583
    1. 18673325, 18293054, 17242746, 17951233, 17649265, 18094246, 19615136
    1. 17011832, 16870214, 17477958, 18522509, 20631274, 16091637, 17323222
    1. 16595641, 16524926, 18228645, 18282562, 17596908, 17156148, 18031668
    1. 16494615, 17545847, 17614134, 13558557, 17341326, 17891946, 17716305
    1. 16392068, 19271443, 18092127, 18440047, 17614227, 14106803, 16903536
    1. 18973907, 18673342, 17389192, 16194160, 17006570, 17612828, 17721717
    1. 17570240, 17390431, 16863422, 18325460, 19727057, 16422541, 19972570
    1. 17267114, 18244962, 21538485, 18765602, 18203838, 16198143, 17246576
    1. 14829250, 17835627, 18247991, 14458214, 21051862, 16692232, 17786278
    1. 17227277, 16042673, 16314254, 16228604, 16837842, 17393683, 17787259
    1. 20331945, 20074391, 15861775, 16399083, 18018515, 18260550, 21051858
    1. 17036973, 16613964, 17080436, 16579084, 18384537, 18280813, 20296213
    1. 16901385, 15979965, 18441944, 16450169, 9756271, 17892268, 11733603
    1. 16285691, 17587063, 16538760, 18180390, 18193833, 21051833, 17238511
    1. 17824637, 16571443, 18306996, 14852021, 18674047, 17853456, 12364061
    1. --------------------------------------------------------------------------------
    1. OPatch succeeded.
    1. [oracle@localhost 21352635]$

oracle 11.2.0.4单实例文件系统安装与补丁的更多相关文章

  1. Oracle 11.2.0.4单实例打PSU,OJVM PSU补丁快速参考

    写在前面: 1.Oracel打每个补丁的操作有时存在差异,所以不管多熟悉,都应该在打任何补丁之前阅读新补丁中附带的readme. 2.Oracle每季度都会更新一个最新的PSU,本文最新指的是当前最新 ...

  2. Oracle 11.2.0.4单实例打补丁

    Oracle 11.2.0.4单实例打PSU,OJVM PSU补丁快速参考 写在前面: ·         1.Oracel打每个补丁的操作有时存在差异,所以不管多熟悉,都应该在打任何补丁之前阅读新补 ...

  3. Asianux 7.3安装Oracle 11.2.0.4单实例体验

    环境:Asianux 7.3 需求:安装Oracle 11.2.0.4 单实例 背景:系统使用默认的最小安装部署,Oracle安装额外需要的包统一使用yum安装. 查看当前系统相关信息: [root@ ...

  4. 完整记录一则Oracle 11.2.0.4单实例打PSU补丁的过程

    本文记录了打PSU的全过程,意在体会数据库打PSU补丁的整个过程. 1.OPatch替换为最新版本2.数据库软件应用19121551补丁程序3.数据库应用补丁4.验证PSU补丁是否应用成功 1.OPa ...

  5. Linux平台Oracle 12.1.0.2 单实例安装部署

    主题:Linux平台Oracle 12.1.0.2 单实例安装部署 环境:RHEL 6.5 + Oracle 12.1.0.2 需求:安装部署OEM 13.2需要Oracle 12.1.0.2版本作为 ...

  6. 11.2.0.4单实例DRCP(Database Resident Connection Pooling)简单测试

    DRCP配置及测试 一. DRCP介绍 数据库提供会话进程在数据库中使用资源的方式: 1)Dedicated Server,一个会话在数据库中对应一个专有进程,一对一服务(资源数据库占用过多,一般使用 ...

  7. Oracle 11.2.0.4_Linux单例篇

    Linux 下安装Oracle步骤: 1.设置ip地址  2.设置主机名 3.安装oracle依赖的软件包 mkdir /media/cdrom -p mount /dev/cdrom  /media ...

  8. 11.2.0.1单实例DGduplicate过程

    记录一次duplicate完整过程1)环境说明数据库版本oracle11.2.0.1,os linux 6.6备库应用的归档,最近一次是三个月前,由于DG环境以前是好的,因此直接迁移数据即可.本次使用 ...

  9. Oracle 11.2.0.4 DataGuard 环境打PSU,OJVM PSU补丁快速参考

    环境:RHEL6.5 + Oracle 11.2.0.4 DataGuard physical standby 主库和备库都是单节点. 需求:主备库同时应用160719的PSU和OJVM PSU补丁. ...

随机推荐

  1. sql server中对xml进行操作

    一.前言 SQL Server 2005 引入了一种称为 XML 的本机数据类型.用户可以创建这样的表,它在关系列之外还有一个或多个 XML 类型的列:此外,还允许带有变量和参数.为了更好地支持 XM ...

  2. HTTP 基础知识

    HTTP是一种协议.HTTP使用流程,一般情况下, 第一:由HTTP客户端发出请求,创建端口. 第二:HTTP服务器在端口监听客户端的请求. 第三:一旦收到请求,HTTP服务器向客户端返回状态和内容. ...

  3. Android开发环境搭建

    导读: 学习Android开发第一步就是搭建Android开发环境. 1.安装JDK JDK(Java SE Development Kit)是Java的开发工具集.SE表示标准版. JRE(Java ...

  4. ubuntu重启搜狗输入法

    fcitx | xargs kill sogou-qimpanel | xargs kill 或者编写Shell脚本restart_sougou.sh,放到/usr/bin目录下,不要忘记chmod修 ...

  5. 服务器端之间采用http接口调数据时的Cookie传值问题

    public static string UrlGet(string url) { string responseContent = ""; string cookieValue ...

  6. Excel—TEXT函数功能详解

    1.将数值转为文本: "@" 2.转换为特定时间格式: "yyyy年mm月dd日" "yyyy/mm/dd" "yyyy/m/d& ...

  7. vue DatePicker vue2.0的日期插件

    一个用vue2.0写的日期控件,可以支持简单的年月日选择.地址:https://github.com/Stevenzwzhai/vue-datepicker. 首先是关于日期对象的使用,基本就是日期的 ...

  8. jquery load 和 iframe 比较

    如果要加载的东西比较简单,里面的没有复杂的数据和逻辑,可以使用load.如果要加载的页面自身有复杂的逻辑.操作,还是建议使用ifame,因为iframe里面可以引入自身的js和样式,而load引入的东 ...

  9. 详解SpringMVC中GET请求

    GET请求概述 GET请求,请求的数据会附加在URL之后,以?分割URL和传输数据,多个参数用&连接.URL的编码格式采用的是ASCII编码,而不是uniclde,所有的非ASCII字符都要编 ...

  10. Fiddler学习笔记

    1. [HTTP]Fiddler(一) - Fiddler简介 Fiddler使用代理(127.0.0.1:8888), 打开Fiddler会自动设置该代理. 2.[HTTP]Fiddler(二) - ...