Header Ads Widget

R12: Rapid Cloning Issue : ouicli.pl INSTE8_APPLY 255


Before running adcfgclone.pl, i have completed all prerequisites steps like run adpreclone.perl , copy ORACLE_HOME, Data files to Target and untar. also changed permission..

Then I executed below command to initiate Rapid cloning for database (11.2.0.3)

                $ cd $ORACLE_HOME/appsutil/clone/bin

                $ perl adcfgcone.pl dbTier


Suddenly, i got following errors.


Below are log file contents:

===============================================

script returned:
****************************************************

.end std out.
Perl lib version (v5.8.8) doesn't match executable version (v5.10.0) at /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/Config.pm line 46.
Compilation failed in require at /u02/oracle/TEST/db/tech_st/11.2.0/appsutil/clone/ouicli.pl line 35.
BEGIN failed--compilation aborted at /u02/oracle/TEST/db/tech_st/11.2.0/appsutil/clone/ouicli.pl line 35.

.end err out.
****************************************************


Executing script in InstantiateFile:
/u02/oracle/TEST/db/tech_st/11.2.0/appsutil/clone/adlnkoh.sh

script returned:
****************************************************

adlnkoh.sh started at Sat Nov  1 00:44:46 IST 2014
Log file located at /u02/oracle/TEST/db/tech_st/11.2.0/appsutil/log/TEST_srvfindemo/make_11010044.log

Using make file "ins_emagent.mk" for linking SYSMAN utilities...
Error while running adlnkoh.sh.
  return code = .58
.
.
.
.
[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:
      <filename>  <phase>  <return code where appropriate>

  [APPLY PHASE]
  AutoConfig could not successfully execute the following scripts:
    Directory: /u02/oracle/TEST/db/tech_st/11.2.0/perl/bin/perl -I /u02/oracle/TEST/db/tech_st/11.2.0/perl/lib/5.8.3 -I /u02/oracle/TEST/db/tech_st/11.2.0/perl/lib/site_perl/5.8.3 -I /u02/oracle/TEST/db/tech_st/11.2.0/appsutil/perl /u02/oracle/TEST/db/tech_st/11.2.0/appsutil/clone
      ouicli.pl               INSTE8_APPLY       255


AutoConfig is exiting with status 1

RC-50013: Fatal: Instantiate driver did not complete successfully.

===============================================




Cause:

An above Error occurred due to perl was pointing to wrong version..




Solutions:

Simple solution which i applied.

Set $ORACLE_HOME/perl/bin in PATH environment variable.

$ export PATH=$ORACLE_HOME/perl/bin:$PATH

Now, run adcfgclone.pl again

My Issue get resolved..