DB Tier 克隆错误,提示打补丁2896876

解决办法,参考Note 412655.1

Applies to:

Application Install - Version: 11.5.10
AIX5L Based Systems (64-bit)

Symptoms

On 11.5.10 in Production:
when running : perl adcfgclone.pl dbTechStack
the following errors occur :

ERROR
Enter the APPS password [APPS]:xxxxxxxx
Checking for make... found - /usr/bin/make
Checking for ld... found - /usr/bin/ld
Checking for cc... found - /usr/vacpp/bin/cc
Checking for ar... found - /usr/bin/ar
Checking for AIX 64-bit kernel extension for Oracle......
FAILURE: Please apply the patch "2896876"

WARNING: Could not find all the required OS utilities in the $PATH. Please review the checks
above

Cause

Script. adchkutl.sh is checking if Patch "2896876" was applied and returning
status 1 when it was not found. This condition is only applicable for RDBMS
8.1.7 and 64-bit kernel. the customer has database version 9iR2 so the
condition is not applicable. The Patch "2896876" does not need to be applied
for database 9iR2. the development did not issue any fix for script. adchkutl.sh
yet, so the fastest way is to edit the script. and change exit status to 0
for cloning to complete successfully.

As per <> The 64-bit kernel extensions for AIX platform. are needed only for 8.1.7

Solution

To implement the solution, please execute the following steps:
1.Edit $ORACLE_HOME/appsutil/clone/bin/adchkutl.sh and the one under $
COMMON_TOP/clone/bin : -

CHANGE FROM:


else
printf "FAILURE: Please apply the Patch "2896876" \n";
exit 1;

CHANGE TO:-


else
printf "FAILURE: Please apply the Patch  "2896876" \n";
exit 0;

This will ensure the script. does not exit with status 1, and allows you to
continue with the clone.

For future clones, simply edit $AD_TOP/bin/adchkutl.sh before running
admkappsutil.pl or
adpreclone.pl

2. Please run perladcfgclone.pl to retest the issue.


 

Image00000.jpeg

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/658698/viewspace-627521/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/658698/viewspace-627521/

你可能感兴趣的:(DB Tier 克隆错误,提示打补丁2896876)