The cloning process of Oracle EBS is simple but always the troubleshooting the clone issue are always not easy. Recently I was performing clone configuration steps on 12.2.5 (dbTier) on target system and encountered below listed issue:
WARNING: [AutoConfig Error Report] The following report lists errors AutoConfig encountered during each phase of its execution. Errors are grouped by directory and phase. The report format is: [APPLY PHASE] AutoConfig could not successfully execute the following scripts: Directory: /u01/ora_prod/PROD/12.1.0/perl/bin/perl -I /u01/ora_prod/PROD/12.1.0/perl/lib/5.14.1 -I /u01/ora_prod/PROD/12.1.0/perl/lib/site_perl/5.14.1 -I /u01/ora_prod/PROD/12.1.0/appsutil/perl /u01/ora_prod/PROD/12.1.0/appsutil/clone ouicli.pl INSTE8_APPLY 1 AutoConfig is exiting with status 1 WARNING: RC-50013: Fatal: Instantiate driver did not complete successfully. /u01/ora_prod/PROD/12.1.0/appsutil/driver/regclone.drv
If you search google then this error will point you to the incorrect version of perl which is not the case here.
Cause:
The script was trying to register the oracle home in inventory but its failing to update it.
Solution:
We need to ensure there are no files currently located in the Inventory directory, If there are any files in this directory then we should delete these files.
[root@erpnode1 ora_prod]# cd /u01/ora_prod/oraInventory [root@erpnode1 oraInventory]# ls ContentsXML logs oui [root@erpnode1 oraInventory]# ls -lrt total 12 drwxrwx--- 2 oracle dba 4096 Jun 16 01:34 oui drwxrwx--- 2 oracle dba 4096 Jun 16 01:40 ContentsXML drwxrwx--- 2 oracle dba 4096 Jul 15 09:56 logs [root@erpnode1 oraInventory]# rm -rf * [root@erpnode1 oraInventory]#
Execute adfcglcone.pl again and it should complete without issues.
Beginning database tier Apply - Fri Jul 15 10:06:46 2016 /u01/ora_prod/PROD/12.1.0/appsutil/clone/bin/../jre/bin/java -Xmx600M -DCONTEXT_VALIDATED=false -Doracle.installer.oui_loc=/u01/ora_prod/PROD/12.1.0/oui -classpath /u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/xmlparserv2.jar:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/ojdbc6.jar:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/java:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/oui/OraInstaller.jar:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/oui/ewt3.jar:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/oui/share.jar:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/oui/srvm.jar:/u01/ora_prod/PROD/12.1.0/appsutil/clone/jlib/ojmisc.jar oracle.apps.ad.clone.ApplyDBTier -e /u01/ora_prod/PROD/12.1.0/appsutil/PROD_erpnode1.xml -stage /u01/ora_prod/PROD/12.1.0/appsutil/clone -showProgress APPS Password : Log file located at /u01/ora_prod/PROD/12.1.0/appsutil/log/PROD_erpnode1/ApplyDBTier_07151006.log | 0% completed Log file located at /u01/ora_prod/PROD/12.1.0/appsutil/log/PROD_erpnode1/ApplyDBTier_07151006.log | 15% completed Completed Apply... Fri Jul 15 10:15:32 2016
Thanks for reading
regards,
X A H E E R