oracle 11.2.0.4单实例文件系统安装与补丁

时间:2022-09-24 19:52:44

[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
  2. #ORACLE SETTING
  3. fs.aio-max-nr = 1048576
  4. fs.file-max = 6815744
  5. kernel.shmall = 2097152
  6. kernel.shmmax = 4181979136
  7. kernel.shmmni = 4096
  8. kernel.sem = 250 32000 100 128
  9. net.ipv4.ip_local_port_range = 9000 65500
  10. net.core.rmem_default = 262144
  11. net.core.rmem_max = 4194304
  12. net.core.wmem_default = 262144
  13. net.core.wmem_max = 1048576
  14. EOF

生效

  1. sysctl -p

(2)限制

  1. cat >> /etc/security/limits.conf<<EOF
  2. #ORACLE SETTING
  3. oracle soft nproc 2047
  4. oracle hard nproc 16384
  5. oracle soft nofile 1024
  6. oracle hard nofile 65536
  7. EOF
  8. cat >> /etc/pam.d/login<<EOF
  9. session required pam_limits.so
  10. 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)
  2. compat-libcap1-1.10-1 (x86_64)
  3. compat-libstdc++-33-3.2.3-69.el6 (x86_64)
  4. compat-libstdc++-33-3.2.3-69.el6.i686
  5. gcc-4.4.4-13.el6 (x86_64)
  6. gcc-c++-4.4.4-13.el6 (x86_64)
  7. glibc-2.12-1.7.el6 (i686)
  8. glibc-2.12-1.7.el6 (x86_64)
  9. glibc-devel-2.12-1.7.el6 (x86_64)
  10. glibc-devel-2.12-1.7.el6.i686
  11. ksh
  12. libgcc-4.4.4-13.el6 (i686)
  13. libgcc-4.4.4-13.el6 (x86_64)
  14. libstdc++-4.4.4-13.el6 (x86_64)
  15. libstdc++-4.4.4-13.el6.i686
  16. libstdc++-devel-4.4.4-13.el6 (x86_64)
  17. libstdc++-devel-4.4.4-13.el6.i686
  18. libaio-0.3.107-10.el6 (x86_64)
  19. libaio-0.3.107-10.el6.i686
  20. libaio-devel-0.3.107-10.el6 (x86_64)
  21. libaio-devel-0.3.107-10.el6.i686
  22. make-3.81-19.el6
  23. sysstat-9.0.4-11.el6 (x86_64)

检查缺失包

  1. rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n' binutils \
  2. compat-libcap1 \
  3. compat-libstdc++ \
  4. compat-libstdc++.i686 \
  5. gcc \
  6. gcc-c++ \
  7. glibc.i686 \
  8. glibc \
  9. glibc-devel \
  10. glibc-devel.i686 \
  11. ksh \
  12. libgcc.i686 \
  13. libgcc \
  14. libstdc++ \
  15. libstdc++.i686 \
  16. libstdc++-devel \
  17. libstdc++-devel.i686 \
  18. libaio \
  19. libaio.i686 \
  20. libaio-devel \
  21. libaio-devel.i686 \
  22. make \
  23. sysstat \
  24. unixODBC \
  25. unixODBC-devel

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

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

设置密码:

  1. passwd oracle

(5)创建所需目录

  1. chmod -R 777 /oracle
  2. chmod -R 770 /oracle/app/
  3. chmod -R 775 /oracle/app/oracle/
  4. mkdir -p /oracle/app/oracle
  5. chown -R oracle:oinstall /oracle/app/oracle/
  6. chown -R oracle:oinstall app/

(6)配置环境变量

  1. su - oracle
  2. vi .bash_profile
  3. 添加下面的内容:
  4. ##################################################
  5. # User specific environment and startup programs
  6. ##################################################
  7. export ORACLE_BASE=/oracle/app/oracle
  8. export ORACLE_HOME=$ORACLE_BASE/product/11.2.0
  9. export ORACLE_PATH=$ORACLE_BASE/common/oracle/sql:.:$ORACLE_HOME/rdbms/admin
  10. export ORACLE_SID=PROD
  11. export PATH=${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin:$ORACLE_HOME/bin
  12. export ORACLE_TERM=xterm  
  13. #export TNS_ADMIN=$ORACLE_HOME/network/admin
  14. export LD_LIBRARY_PATH=$ORACLE_HOME/lib  
  15. export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$ORACLE_HOME/oracm/lib  
  16. export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/lib:/usr/lib:/usr/local/lib
  17. export CLASSPATH=$ORACLE_HOME/JRE  
  18. export CLASSPATH=${CLASSPATH}:$ORACLE_HOME/jlib  
  19. export CLASSPATH=${CLASSPATH}:$ORACLE_HOME/rdbms/jlib  
  20. export CLASSPATH=${CLASSPATH}:$ORACLE_HOME/network/jlib  
  21. export THREADS_FLAG=native  
  22. export TEMP=/tmp  
  23. export TMPDIR=/tmp  
  24. ##################################################  
  25. # set NLS_LANG to resolve messy code in SQLPLUS  
  26. ##################################################  
  27. export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1  
  28. ##################################################  
  29. # Shell setting.  
  30. ##################################################  
  31. umask 022  
  32. set -o vi  
  33. export PS1="\${ORACLE_SID}@`hostname`  \${PWD}$ "
  34. ##################################################
  35. # Oracle Alias
  36. ##################################################
  37. alias ls="ls -FA"
  38. alias vi=vim
  39. alias base='cd $ORACLE_BASE'  
  40. alias home='cd $ORACLE_HOME'
  41. alias alert='tail -200f $ORACLE_BASE/admin/RACDB/bdump/alert_$ORACLE_SID.log'
  42. alias tnsnames='vi $ORACLE_HOME/network/admin/tnsnames.ora'  
  43. alias listener='vi $ORACLE_HOME/network/admin/listener.ora'

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

二,安装oracle软件

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

oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁
如果出现下面乱码,修改临时环境变量
oracle 11.2.0.4单实例文件系统安装与补丁

  1. export LANG=en_US

oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁
YES
oracle 11.2.0.4单实例文件系统安装与补丁

4.跳过软件更新,NEXT

oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁

6.安装单实例,NEXT

oracle 11.2.0.4单实例文件系统安装与补丁

7.语言选择,NEXT

oracle 11.2.0.4单实例文件系统安装与补丁

8.安装企业版,NEXT

oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁

10.清单目录,NEXT

oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁
pdksh可以忽略
oracle 11.2.0.4单实例文件系统安装与补丁
开始安装
oracle 11.2.0.4单实例文件系统安装与补丁

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

oracle 11.2.0.4单实例文件系统安装与补丁

14.安装完成

oracle 11.2.0.4单实例文件系统安装与补丁

三,打最新patch

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

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

  1. Oracle 11&period;2&period;0&period;4单实例打PSU&comma;OJVM PSU补丁快速参考

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

  2. Oracle 11&period;2&period;0&period;4单实例打补丁

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

  3. Asianux 7&period;3安装Oracle 11&period;2&period;0&period;4单实例体验

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

  4. 完整记录一则Oracle 11&period;2&period;0&period;4单实例打PSU补丁的过程

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

  5. Linux平台Oracle 12&period;1&period;0&period;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&period;2&period;0&period;4单实例DRCP&lpar;Database Resident Connection Pooling&rpar;简单测试

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

  7. Oracle 11&period;2&period;0&period;4&lowbar;Linux单例篇

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

  8. 11&period;2&period;0&period;1单实例DGduplicate过程

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

  9. Oracle 11&period;2&period;0&period;4 DataGuard 环境打PSU&comma;OJVM PSU补丁快速参考

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

随机推荐

  1. ie6&comma;ie7&comma;ie8 css bug兼容解决方法

    IE浏览器以不支持大量的css 属性出名,同时也因其支持的css属性中存在大量bug. 这里收集了好多的bug以及其解决的办法,都在这个文章里面记录下来了!希望以后解决类似问题的时候能够快速解决,也希 ...

  2. 客户端用javascript获取文件大小

    客户端用javascript获取文件大小 1 ie实现代码如下: <script type="text/javascript" language="javascri ...

  3. 纯CSS实现3D按钮效果

    今天分享一个用纯CSS实现的3D按钮.css巧妙利用了box-shadow来实现3D物体的立体感,当按钮按下的时候再去修改box-shadow和top值.让人感觉有一种按钮被按下的感觉.css代码非常 ...

  4. hdu 4597 &plus; uva 10891&lpar;一类区间dp&rpar;

    题目链接:http://vjudge.net/problem/viewProblem.action?id=19461 思路:一类经典的博弈类区间dp,我们令dp[l][r]表示玩家A从区间[l, r] ...

  5. node&period;js整理 07例子

    需求 一个简单的静态文件合并服务器,该服务器需要支持类似以下格式的JS或CSS文件合并请求. http://assets.example.com/foo/??bar.js,baz.js 在以上URL中 ...

  6. 【AngularJS学习笔记】00 序

    AngularJS通过新的属性与表达式来扩展HTML,有一种很形象的叫法,定义它为声明式语言. 为克服HTML在构建应用上的不足而设计! 这是它的目标. 它的官网进不去,应该是被墙了,这是goegle ...

  7. BST &amp&semi; Treap

    二叉查找树递归定义: 二叉查找树是空树或不是空树二叉查找树的左二叉查找树的值一定小于二叉查找树的值或左二叉查找树为空树二叉查找树的右二叉查找树的值一定大于二叉查找树的值或右二叉查找树为空树 不维护父亲 ...

  8. 安装Loopback网卡&sol;回环网卡

    $CurrentPath = $MyInvocation.MyCommand.Path.substring(0,$MyInvocation.MyCommand.Path.LastIndexOf('\' ...

  9. Chapter 1 Securing Your Server and Network&lpar;7&rpar;&colon;禁用SQL Server Browse

    原文:Chapter 1 Securing Your Server and Network(7):禁用SQL Server Browse 原文出处:http://blog.csdn.net/dba_h ...

  10. 强一致性hash实现java版本及强一致性hash原理

    一致性 hash 分布式过程中我们将服务分散到若干的节点上,以此通过集体的力量提升服务的目的.然而,对于一个客户端来说,该由哪个节点服务呢?或者说对某个节点来说他分配到哪些任务呢? 强哈希 考虑到单服 ...