




已阅读5页,还剩57页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
背向天堂oracle补丁安装操作说明1. oracle数据库的版本号oracle数据库的发行版本号(release number)一般由五位数字组成。l major database release number第一位数字是我们最常提到的一个大版本标识,它代表了数据库主要发行版本号;譬如我们说的10g不管是r1还是r2,其版本号的第一位总是10;不同major release number之间预示着存在功能上的巨大差别,例如在11g中加入了许多10g上永远不会有的新特性。l database maintenance release number第二位数字代表数据库维护版本发行号,也就是我们常说的r1或者r2。已有的maintenance release number包括:8.1(比较特殊)、9.1、9.2、10.1、10.2和11.1、11.2。从9i开始每一个大版本都有2个release,一般来说r1总是显得不那么稳定(至少11g之前是这样),通过在r1中引入大量特性后发行并根据用户实际使用情况不断修正bug,到r2发行时r1中引入的新特性已经日渐成熟,当然按照oracle的风格在r2中还会引入部分特性,一些特性甚至可能是颠覆性的。l application server release number第三位数字代表了oracle application server (oracleas)的发行版本号;对于oracle database软件而言这一位总是为0。l component-specific release number第四位数字代表了某个组件的发行版本号。这里说的组件是指我们在使用dbca创建数据库是选择安装的component,例如oracle olap、label security等(如果是手动创建数据库,那么必然运行了安装组件的脚本,一般位于$oracle_home/rdbms/admin目录下)取决于数据库上所打过的component patch set补丁集或interim release临时版本,同一个数据库中不同组件可能存在不同的组件版本号。在给数据库软件打上patch set后我们需要给已经存在的数据库升级组件版本,通俗地说是给数据库升级数据字典,这样数据库内的组件版本一般是一致的,如我将一个的数据库升级到,那么这个数据库里的组件版本也会是。我们可以通过查询dba_server_registry视图来了解数据库中的组件版本情况。l platform-specific release number第五位数字代表了平台相关发行版本号。通常意义上该位数字受到另一种补丁(不是patch set)的影响。在10g以后oracle引入了在某个特定的补丁集的基础上发行的补丁集的更新(psu-patch set update);通过psu的发行,oracle可以针对某个特定的补丁集版本上发生的bug集中性地修复,例如是一个10g使用十分广泛的版本,如果在上发现了bug那么就可以将fix合并到psu中。一般来说psu会每年的1、4、7、10月份release,最近的一次psu释放是在2011年的4月,包含了的第8个psu也就是.8。注意oracle只会为某个大版本上的几个final release制作psu补丁,目前在10g上保持psu发布的版本是和,而对于则不再有psu的支持。可以通过查询registry$history表了解数据库(db ,not database software)的psu信息。2. 补丁类型介绍名称说明release标准产品发布。如oracle database 10g release 2的第一个发行版本为,可以在otn、edelivery等站点上公开下载。patch set release就是早期大家常说的psr。这是在主版本号上发布的补丁集,修复了较多的bug,可能会包含一些增强功能(enhancement)。比如是一个主版本,那么、就是2个不同的patch set。这种补丁集经过了严格的集成测试,也是累积型的。所以推荐安装最新的patch set。patch set update就是dba&dma们常论道的psu。oracle 选取在每个季度用户下载数量最多,并且得到验证具有较低风险的补丁放入到每个季度的psu中,修复比较严重的一些问题,包含每个季度的cpu,是累积型的。虽然在描述psu的时候会用到数据库版本第5位,比如database psu .5,但实际上打完psu后并不会真正改变数据库的版本,从v$version中看到的版本还是4位的(.0),第5位仍然是0。注意1 windows上没有cpu和psu,对于windows和exadata,oracle使用bundlepatch代替psu,bundle patch会包含psu的内容2 从版本开始,一个新的补丁策略被引入,之后发布的patch set本身就是一个完整的安装包,不再需要基础的release 版本安装。critical patch update这个指的就是cpu补丁。每季度发布一次,用来修复安全方面的一些补丁,是累积型的。目前(2012年10月)已经更名为security patch update (spu)。这类问题本来不属于软件错误,在正常使用中不会出现任何问题。但是别有用心的人可以通过运行非常精巧设计的代码 ,绕过数据库系统的安全管理机制,达到非授权存取的目的。interim patch/one-off patch是我们常说的小补丁,为了修复某(几)个bug而发布的补丁。这种补丁推荐在测试库上测试无误后再安装在生产库上。merged patch合并的补丁。当几个小补丁之间有冲突,不能同时安装的时候,需要提供这种merged patch。补丁冲突主要是由于2个或者多个补丁修改同一个文件,但是修改的内容是不同的。bundle patch(bp)补丁集,修复多个bug。在windows平台上的oracle没有小补丁,只有这种bundle patch。 这种累积型的补丁集会周期性的发布(至少每季一次),也就是每个bundle patch会包含之前所有的bundle patch。比如windows bundle patch 16,它会包含之前所有15个bundle patch,所以我们总是推荐安装最新的bundle patch。oracle的集群软件和数据库软件的window bundle patch是同一个,比如windows bundle patch 16(补丁号16167942,既可以打在集群上,也可以打在数据库上) 。要了解windows bundle patch的补丁号,可以参考mos文档:note 161549.1 oracle database, networking and grid agent patches for microsoft platformsdiagnostic patch诊断补丁。顾名思义,这类补丁不是用来解决问题的,而是用来寻找问题的原因的。这类补丁只在oracle技术支持部门要求安装时,才需要安装。在得到需要的诊断信息后 ,应立即卸载这一补丁。composite patch从2012年4月份的database psu .2和.0.7开始,推出一种新的概念叫composite patches。 这是一种新型的补丁包,它不同于其他的累积型补丁包。如果是第一次安装composite patches,那么该composite patches所包括的全部补丁都会被安装,后续安装的composite patches,只会安装对比前一次composite patches有变化的部分和新增加的补丁。composite patche的改进包括减少补丁安装时间,减少回滚以前应用的overlay patches的需要。 新的composite patches格式,使以前psu应用的overlay patches和新安装的psu并存成为可能。更多信息。3. 补丁安装过程前的准备工作you can back up the oracle_home using your preferred method. you can use any method such as zip, cp -r, tar, and cpio to compress the oracle_home.执行 opatch lsinventory -detail 命令,进行 oracle_home 信息检查。如果反馈结果中的oracle_home与实际软件安装的oracle_home不一致。 可能存在 oracle_home/inventory 信息错误或不一致。执行任何补丁操作前,一定要备份 $oracle_home 以及 $oracle_base/orainventory。4. 关于 opatchopatch支持下列操作:l 应用过渡性补丁.l 回滚已经应用的过渡性补丁.l 检查安装补丁与已安装补丁是否冲突. 并给出冲突解决建议.l 提供已安装过渡性补丁的报告信息.4.1. 过渡性补丁结构过渡性补丁通常为zip文件格式. 在应用补丁之前,需要进行解压缩处理。过渡性补丁包含下面内容:l patch metadata: this contains information on the patch id, the bugs fixed, the files affected, and the actions to be performed.l payload: this contains the files that will be modified by opatch.l custom scripts: pre-processing and post-processing scripts that needs to be run before and after patching.4.2. 过渡性补丁版本opatch 10.2 支持维护补丁版本信息。you can have two or more different versions of the same patch (with the same patch id). this version information is stored in the opatch metadata. the metadata has a tag date_of_patch, that stores the patch version information. the sample of the tag is as follows: date on which the patch was createdopatch 将补丁信息存放在 $oracle_home/.patch_storage 目录下. 安装到 $oracle_home 下的补丁将被单独进行存放. 同一之间只有进行一个 opatch的操作。oraclenmacct1 $ cd $oracle_homeoraclenmacct1 db$ ls -la | grep patchdrwxr-x- 6 oracle oinstall 4096 aug 23 14:06 .patch_storageoraclenmacct1 .patch_storage$ lltotal 28drwxr-xr-x 7 oracle oinstall 4096 aug 23 10:24 14275629_oct_3_2012_18_33_12drwxr-xr-x 6 oracle oinstall 4096 aug 23 13:43 9952245_jan_17_2011_03_04_34-rw-r-r- 1 oracle oinstall 1748 aug 23 13:43 interim_inventory.txt-rw-r-r- 1 oracle oinstall 91 aug 23 13:43 latestopatchspertiesdrwxr-xr-x 4 oracle oinstall 4096 aug 23 13:43 napply-rw-r-r- 1 oracle oinstall 0 aug 23 13:43 patch_free-rw-r-r- 1 oracle oinstall 1547 aug 23 13:43 record_inventory.txtdrwxr-xr-x 2 oracle oinstall 4096 aug 23 10:24 verify多个opatch进程运行时,系统会出现如下错误信息:inventory load failed. opatch cannot load inventory for the given oracle home.lsinventorysession failed: lsinventory cannot create the log directory /oracle/product/10.2.0/db/cfgtoollogs/opatch/lsinv/lsinventory2013-08-22_17-19-15pm.txtopatch failed with error code 73.通过 opatch lsinventory -detail 命令可以查看本地补丁安装信息。patch location in storage area:/home1/hometoiir571/.patch_storage/300200_dec_24_2003_04_57_13you will also find an unzipped version of the patch in the following location:$oracle_home/.patch_storage/original_patch4.3. 获取过渡性补丁通过 patch id 在oraclemetalink 上查询补丁信息:/support/metalink/index.html4.4. 运行 opatch 所需环境l oracle_home 环境变量必须指定到正确的oracle软件的安装目录。l 需要java sdk 1.4 或者更高的版本, ar, cp, fuser, make 等命令必须可用.l oracle real application clusters 环境下 library path 必须正确设置. for solarisld_library_path = $oracle_home/lib32:$oracle_home/libfor hp-ux - shlib_path=$oracle_home/lib32:/usr/lib4.5. opatch 特性the opatch 10.2 utility has the following features:l scalability: opatch is scalable to support large number of patches.l reliability: opatch is reliable and protects the oracle home and inventory. it can bring the oracle home back to a stable state from patch application failures. it can also easily detect patch conflicts.l portability: opatch is compatible with all operating systems for which oracle releases software.l robust: opatch is very robust. it is very easy to apply a patch as well as remove it.l easy to maintain: opatch is easy to maintain and is also extensible.l support for silent operation: opatch supports silent operation. this mode allows you to run the software without any user interaction.l support for real application clusters: opatch supports real application clusters and works well in that setup. it is easy to extend it to the grid control.l easy to debug: opatch has various levels of logging and tracing mechanisms. it also has a debug option that helps to diagnose problems with the software easily.4.6. opatch 使用环境检查4.6.1. oracle_homeopatch verifies if the oracle home is present. you must ensure that the oracle_home environment variable is set to the oracle home of the product you are trying to patch. check the respective vendor documentation for the details to set the environment variable.4.6.2. jre and jdkopatch requires jdk 1.4 or higher to work properly. jre comes as a part of jdk.opatch 10.2 uses the jar utility that comes with jdk for its jar, war, and ear operations.opatch will look for jdk inside the oracle home specified. 如果oracle安装目录中不含 jdk 信息, 需要使用 -jdk 选项提供jdk路径. opatch 如果找不到jdk路径,在对 jar/war/ear 文件进行操作时会报错.in order to find the version of jdk installed, execute the following command:jdk/bin/java -versionnote:if the patch you are applying does not have a jar action, you might not need jdk and opatch will work fine with jre alone.4.6.3. check for system spacewhen opatch processes the script for the installation of a patch, it simultaneously (同时) generates a rollback script and saves a copy of every file edited or deleted during the patching. opatch also backs up the inventory information. so, oracle recommends that you have sufficient system space to accommodate the patch and the backup information.4.6.4. oracle universal installer 与 opatch 版本兼容检查opatch 10.2 requires oracle universal installer 10.2 or higher to work properly. if the oracle universal installer version is less than what opatch requires, then opatch errors out.4.7. opatch 工具的操作和选项opatch工具位置在 $oracle_home/opatch目录下。/opatch -command_line_argumentsoraclenmacct1 opatch$ ./opatch -hinvoking opatch .9oracle interim patch installer version .9copyright (c) 2009, oracle corporation. all rights reserved. usage: opatch -help -report command command := apply lsinventory napply nrollback rollback query version prereq util := -help displays the help message for the command. -report print the actions without executing.oraclenmacct1 opatch$ ./opatch lsinventory -hinvoking opatch .9oracle interim patch installer version .9copyright (c) 2009, oracle corporation. all rights reserved.description list the inventory for a particular $oracle_home or display all installations that can be found.syntaxopatch lsinventory -all -all_nodes -bugs_fixed -delay -detail -group_by_date -invptrloc -jre -local -oh -patch -patch_id -property_file -retry 命令参数列表:optiondescriptionapplyinstalls an interim patch. lsinventorylists what is currently installed on the system. queryqueries a given patch for specific details. rollbackremoves an interim patch. versionprints the current version of the patch tool. to view additional information for any option, use the following command:/opatch option -helpif using perl, then use the following command:perl opatch.pl option -help4.7.1. apply option (补丁安装选项)the apply option applies an interim patch to a specified oracle home. the oracle_home environment variable must be set to the oracle home to be patched.command-line argumentdescriptiondelayspecifies how many seconds to wait before attempting to lock the inventory in the case of a previous failure. you can use this option only if -retry option is specified. 锁定目录需要等待多久,需要配合retry参数。forceremoves conflicting patches from the system. if a conflict exists which prevents the patch from being applied, then the -force command-line argument can be used to apply the patch. 删除有冲突的补丁。invptrlocspecifies the location of the orainst.loc file. this command-line argument is needed when the -invptrloc argument was used during installation. oracle recommends the use of the default central inventory for a platform.jdkspecifies the location of a particular jdk (jar) to use instead of the default location under the oracle home directory. you cannot use -jdk and -jre options together.指定jdk路径替换oracle 默认目录下的。jrespecifies the location of a particular jre (java) to use instead of the default location under the oracle home directory. you cannot use -jdk and -jre options together. 不能同时使用jdk和jre选项。localspecifies that the opatch utility patch the local node and update the inventory of the local node. it does not propagate the patch or inventory update to other nodes.this command-line argument can be used on oracle real application clusters environments and non-clustered environments. if an entire cluster is shutdown before patching, then this argument can be used for non-rolling patches. 进行本地节点补丁安装,更新本地节点的inventory目录。local_nodespecifies to the opatch utility the local node for this cluster.this command-line argument can be used on oracle real application clusters environments.minimize_downtimespecifies the order of nodes to be patched by the opatch utility.this command-line argument only applies to oracle real application clusters environments. it cannot be used with the -local command-line argument or a rolling patch.no_bug_supersetspecifies to error out if the current patch bugs-to-fix is a superset or the same as an installed patch bugs-fixed in the oracle home directory.no_inventorybypasses the inventory for reading and updates. this command-line argument cannot be used with the -local command-line argument. this command-line argument puts the installation into an unsupported state.no_sysmodspecifies that the opatch utility need not update the files in the system. it will only update the inventory.不更新system文件,只更新inventory记录。no_relinkthis option does not perform any make operation. it can be used during multiple patch applications and to perform the linking step only once. opatch does not keep track of the make operations it did not perform. you need to make sure to execute opatch without this option at the end for compilation.不进行任何编译操作。对多个补丁进行操作时,最后统一进行编译,需要用户自己记录是否做过编译操作。ohspecifies the oracle home directory to use instead of the default.指定 oracle_home 目录。替换默认目录。opatch_post_endmarks the end of the post option. this command-line argument is used with the post command-line argument. if this argument is not used, then everything after post is passed into post.opatch_pre_endmarks the end of the pre options. this command-line argument is used with the pre command-line argument. if this argument is not used, then everything after pre is passed into pre.postspecifies the parameters to be passed inside the post script besides the standard parameters.prespecifies the parameters to be passed inside the pre script besides the standard parameters.remote_nodesspecifies to the opatch utility the list of remote nodes.this command-line argument can be used on oracle real application clusters environments.reportprints the action to the screen without executing it.打印动作信息,但是不进行执行操作。retryspecifies how many times the opatch utility should try when there is an inventory lock failure.silentsuppresses user interaction, and defaults any answers to yes.verboseprints output to the screen as well as to the log file.. report./opatch apply -report4.7.2. lsinventory optionthe lsinventory option reports what has been installed on the system for a particular oracle home directory, or for all installations./opatch lsinventory -all -delay (value) -detail -invprtloc (path) -jre (location) -retry (value) -patch -oh (oracle home location)4.7.3. query optionthe query option queries a specific patch for specific details. it provides information about the patch and the system being patched./opatch query -all -jre (location) -jdk (location) -oh (location) patch_location4.7.4. rollback option (补丁回退选项)the rollback option removes a specific interim patch from the appropriate oracle home directory. /opatch rollback -id (patch_id) -ph (patch directory) -delay (value) -invptrloc (path) -jdk (location) -jre (location)-local -oh (oracle home location) -post (options to be passed into post) -opatch_post_end -pre (options to be passed into pre) -opatch_pre_end -retry (value) -silent -verbose -no_relink -no_sysmod-remote_nodes (node1,node2)-local_node (node_name)command-line argumentdescriptiondelayspecifies how many seconds the opatch utility should wait before attempting to lock inventory again, if the -retry command-line argument is used with the apply option.idindicates the patch to be rolled back. use the -lsinventory option to display all patch identifiers. to successfully rollback a patch, the patch identifier must be supplied.指定需要回退的补丁编号。invptrlocspecifies the location of the orainst.loc file. this command-line argument is needed when the -invptrloc command-line argument was used during installation. oracle recommends the use of the default central inventory for a platform.jdkspecifies the location of a particular jdk (jar) to use instead of the default location under the oracle home directory.jrespecifies the location of a particular jre (java) to use instead of the default location under the oracle home directory.localspecifies that the opatch utility rollback and update the local node and update the inventory of the local node. it does not propagate the patch or inventory update to other nodes.this command-line argument can be used on oracle real application clusters environments and non-clustered environments. if an entire cluster is shutdown bef
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年变化点管理考试题及答案
- 混凝土防水施工技术方案
- 钢结构连接节点设计优化方案
- 呼兰河传阅读测试题及答案
- 机械设备采购合同范本【三篇】
- 体育业务考试试题及答案
- 小学三级知识竞赛题及答案
- 济南市前期物业管理委托合同
- 广告学原理学习心得范例五篇
- 保障性住房项目可行性分析与风险评估方案
- 2023小学道德与法治教材教法考试模拟试题及答案(八套)
- 小学挫折教育《生活的挫折成长的礼物》课件
- 物业工作拍照技巧培训课件
- 眼科学分类概述
- 小学特色课程《口风琴课程》校本教材
- 大数据可视化管控平台的人工智能与智能家居
- 数字化工厂安全生产培训课程
- 《青少年心理健康》课件
- 盆腔炎性疾病护理查房课件
- 手功能康复医学知识培训专家讲座
- 脑外伤急救与护理课件
评论
0/150
提交评论