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

[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启动图形界面

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. [[email protected] software]$ $ORACLE_HOME/OPatch/opatch version
  2. OPatch Version: 11.2.0.3.4
  3. OPatch succeeded.
  4. [[email protected] software]$ cp OPatch-p6880880_112000_Linux-x86-64.zip $ORACLE_HOME
  5. [[email protected] software]$ cd $ORACLE_HOME
  6. [[email protected] 11.2.0]$ mv OPatch OPatch_100057_OLD 
  7. [[email protected] 11.2.0]$ unzip OPatch-p6880880_112000_Linux-x86-64.zip
  8. [[email protected] 11.2.0]$ export PATH=$PATH:$ORACLE_HOME/OPatch
  9. ---查看当前补丁情况
  10. [[email protected] 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. [[email protected] 11.2.0]$ cd /oracle/software/21352635/
  2. [[email protected] 21352635]$
  3. [[email protected] 21352635]$ 
  4. [[email protected] 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. [[email protected] 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. [[email protected] 21352635]$
3.应用补丁
  1. [[email protected] 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. [[email protected] 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. [[email protected] 21352635]$

来自为知笔记(Wiz)

时间: 2024-10-10 06:47:27

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

Asianux 7.3安装Oracle 11.2.0.4单实例体验

环境:Asianux 7.3 需求:安装Oracle 11.2.0.4 单实例 背景:系统使用默认的最小安装部署,Oracle安装额外需要的包统一使用yum安装. 查看当前系统相关信息: [[email protected] ~]# uname -a Linux localhost.localdomain 3.10.0-514.axs7.x86_64 #1 SMP Fri Feb 17 19:31:50 CST 2017 x86_64 x86_64 x86_64 GNU/Linux [[emai

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

本文记录了打PSU的全过程,意在体会数据库打PSU补丁的整个过程. 1.OPatch替换为最新版本2.数据库软件应用19221551补丁程序3.数据库应用补丁4.验证PSU补丁是否应用成功 1.OPatch替换为最新版本 [[email protected] usr2]$ id uid=500(oracle) gid=500(oinstall) 组=500(oinstall),501(dba) 环境=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.

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

DRCP配置及测试 一. DRCP介绍 数据库提供会话进程在数据库中使用资源的方式: 1)Dedicated Server,一个会话在数据库中对应一个专有进程,一对一服务(资源数据库占用过多,一般使用中间件应用层面进行会话数量管控及会话资源重用) 当接收到Client Server的请求之后,Dispatcher会将请求放置在一个common队列中.可用的Server Process就从队列中获取请求信息.当终止会话之后,对应的会话信息就被释放掉.Session信息是从SGA中分配出. 2)Sh

11.2.0.4 单实例的 db instance 启动的alert

Fri Jan 09 03:11:17 2015 DIAG started with pid=19, OS id=6031 Dumping diagnostic data in directory=[cdmp_20150109031118], requested by (instance=1, osid=2456 (CJQ0)), summary=[incident=45657]. Mon Feb 09 01:51:09 2015 Adjusting the default value of p

ORACLE 11.2.0.1升级到11.2.0.3

ORACLE 11.2.0.1升级到11.2.0.3 最近听了李光老师的关于oracle的升级公开课,深有感悟,之前一直想自己测试的,没有下定决心,这几天自己在虚拟机上测试了一下,测试的过程如下,当然这个只是一些基本的步骤,实际的生产环境我想比这个复杂的多了,但是不用急,慢慢来,循序渐进吧... 1. 数据库情况 单实例非ASM存储 ORACLE_SID : orcl ORACLE_HOME: /u01/app/oracle/product/11.2.0/dbhome_1 1. 数据库原始状态

Oracle 11.2.0.4打PSU 11.2.0.4.161018

最近生产上要给Oracle数据库打11g最新的补丁,这里先做一个测试记录一下. Oracle数据库所有补丁的MOS文档ID 1922396.1下载地址:https://support.oracle.com/epmos/faces/DocContentDisplay?_afrLoop=242245405602967&id=1577380.1&_afrWindowMode=0&_adf.ctrl-state=zv36z4hoo_53这个下载需要有MOS账号 Oracle数据库的补丁有几

ORACLE LINUX 6.3 + ORACLE 11.2.0.3 RAC + VBOX安装文档

ORACLE LINUX 6.3 + ORACLE 11.2.0.3 RAC + VBOX安装文档 2015-10-21 12:51 525人阅读 评论(0) 收藏 举报  分类: Oracle RAC 版权声明:本文为博主原创文章,未经博主允许不得转载. VBOX + Oracle Linux 6U3 + ORACLE 11.2.0.3.0 RAC 安装 环境: 虚拟机          VIRTUAL BOX OS                ORACLE LINUX 6.3_X86_64

centos6.8 静默安装 oracle 11.2.0.4

安装环境及系统要求    (下文具体参数值与路径根据自己的环境调整)操作系统:Red Hat Enterprise Linux 6 (x86) 或者CentOS 6 (x64) 数据库:Oracle 11g r2 32-bit for Linux 或者 Oracle 11g r2 64-bit for Linux内存:至少1G的物理内存交换空间:1G的内存推荐设置swap 分区至少为2G硬盘:至少5G硬盘空间配置Linux系统参数进行Oracle的安装 在Root用户下执行以下步骤:前提: 1.

Oracle 11.2.0.4 PSU实施文档

1. 本次服务详细过程 1.1 背景概述 升级数据库PUS,数据库环境,操作系统版本:RedHat5.8 x64,数据库版本Oracle 11.2.0.4 x64 RAC Grid: 11.2.0.4,Oracle database: 11.2.0.4 1.2 安装前准备 -rw-r--r-- 1 oracle oinstall  93376160 Mar 25 11:43 p21948347_112040_Linux-x86-64.zip -rw-r--r-- 1 oracle oinstal