且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

ebs系统架构简介7.1——rac clone

更新时间:2022-04-11 10:31:48

今天在rac环境clone 的时候,查看日志:

/testebs/uat/db/11.2.0/appsutil/log/TESTUAT1_hostname1/ApplyDatabase_12201204.log

发现这样一句话:
Attempting to move clone specific files to temporary directory..
Src location: /backup/testsit/clone/data/stage
Target location: /testebs/uat/db/11.2.0/appsutil/temp/stage
Moving files:
adcrdb.zip
addbhomsrc.xml
addbhomtgt.xml


也就是要把/backup/testsit/clone/data/stage 目录下的

adcrdb.zip
addbhomsrc.xml
addbhomtgt.xml

移动到/testebs/uat/db/11.2.0/appsutil/temp/stage 目录。

日志在这个地方停住了,担心是不是卡住了,所以去/testebs/uat/db/11.2.0/appsutil/temp/stage 目录下查看是否已经移动过来了,但是发现adcrdb.zip 、addbhomsrc.xml存在,但是addbhomtgt.xml 文件不存在。

考虑到 /backup/testsit/clone/data/stage的内容是preclone产生的,于是去生产环境$ORACLE_HOME/appsutil/clone/data/stage目录下查看是否是因为权限原因没有及时拷贝到/backup/testsit/clone/data/stage目录,结果发现生产环境也没有此文件。


难道真的是preclone过程没有生产此文件,或者被误删除了?会不会因为少了这个文件clone过程卡主呢?赶紧去metalink上查了下相关内容:

Addbhomtgt.Xml File is deleted by Adpreclone (Doc ID 880274.1)


This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process and therefore has not been subject to an independent technical review.

APPLIES TO:

Oracle Application Install - Version: 11.5.10.2 to 11.5.10.2 - Release: 11.5 to 11.5
Information in this document applies to any platform.

GOAL

Why is Addbhomtgt.Xml File deleted by Adpreclone when cloning a RAC instance?

SOLUTION

This is an expected behavior.

RapidClone was designed to be run manually from the command line as documented in Note 230672.1 because Oracle do not support the automation of RapidClone. 

Although it may be possible to incorporate these commands into scripts and automate this process, this does not work on all systems, and RAC enabled systems are the exception. 

Certain files are removed during the preparation phase to avoid conflicts and configuration issues when the target system is configured. 

The file addbhomtgt.xml can cause these issues, which is why it is removed during the preparation phase, and recreated on the Target when CloneContext.java is called. Non-RAC instances can easily be refreshed without the dependency on addbhomtgt.xml, as an existing Context file is passed to the command line to avoid CloneContext.java being called.

RapidClone and RAC has a high dependency on addbhomtgt.xml , so can only be done via the steps documented in Note 230672.1 "Section 4: Advanced Cloning Options" and sub-section "6. Cloning a RAC System" .

The "Refreshing a Target System" steps do not apply to RAC systems. Cloning 11i with 10g/11g involve further manual steps documented in Note 760637.1.

Workaround:

If the existence of addbhomtgt.xml is a factor preventing the automated cloning from working, a solution is to incorporate some further customization in the automation scripts that restore a pre-saved and pre-configured copy of addbhomtgt.xml just prior to executing adcfgclone.pl. This will need to be created beforehand via a manual run of adcfgclone.pl and CloneContext.java, so without an existing context file, but can be stored outside of the clone stage area, and restored for future clones of that instance.

Note: 

Oracle do not provide assistance on automating RapidClone but it offers advanced cloning options via a separately licensed product called the Applications Maintenance Pack (AMP) plugin, which uses the Enterprise Manager Grid Control framework.

More information on AMP can be found in Metalink  Note 812315.1.







ebs系统架构简介7.1——rac clone Addbhomtgt.Xml File is deleted by Adpreclone (Doc ID 880274.1)