Post clone EBS 12.1.3 URL login failed with error:
Error Page |
| You have encountered an unexpected error. Please contact the System Administrator for assistance. |
$LOG_HOME//ora/10.1.3/Apache/ error_log.1731024000 shows below error:
mod_oc4j: Failed to find a failover oc4j process for session request for destination: application://oacore (no island or jgroup)
Solution 1 : (EBS 12.1.3 )
cd $ADMIN_SCRIPTS_HOME
rm -fr $INST_TOP/ora/10.1.3/j2ee/oacore/persistence/*
rm -fr $INST_TOP/ora/10.1.3/j2ee/oafm/persistence/*
rm -fr $INST_TOP/ora/10.1.3/j2ee/forms/persistence/*
sh adopmnctl.sh startall
sh adopmnctl.sh status -l
If all opmn started successful then "clear browser" cache and try login URL should work fine.
Solution 2 : (EBS 12.1.3 )
- Check applsys and apps password working fine.
- Checked guest user showing output 'Y', If its showing output 'N' (details below) then check password under $FND_SECURE/*dbc file and change it accordingly (most of the cased its GUEST/ORACLE).
- Stop application Services
- Run adautocfg.sh and restart the services
SQL> SELECT fnd_web_sec.validate_login('GUEST','0RACLE') FROM dual;
FND_WEB_SEC.VALIDATE_LOGIN('GUEST','0RACLE')
--------------------------------------------------------------------------------
N
SQL> select fnd_message.get from dual;
GET
--------------------------------------------------------------------------------
PASSWORD_INVALID
Solution 3 : (EBS 12.1.3 )
Stop application services (sh adstpall.sh)
Run "adadmin"
Rebuild the Jar/Zip Files:Select Generate Applications Files menuSelect Generate product JAR files (choose FORCE=YES)2. Reload the Jar/Zip files into the Database:
Run "adadmin"
Select Compile/Reload Applications Database Entities menuSelect Reload JAR files to database3. Recompile the loaded Java Classes:
Run "adadmin"
Select Compile/Reload Applications Database Entities menuSelect Compile APPS schema4. Recompile JSP’s:
Backup and then delete the files under:
$OA_HTML/cabo/images/cache$OA_HTML/cabo/styles/cacheRecompile Jsps
cd $FND_TOP/patch/115/bin./ojspCompile.pl --compile --flush -p 2
Start Application Services (sh adstrtall.sh)
Solution 4 : (only for EBS 11.5.10 instances )
NOTE: Below fix only applicable if you are on EBS 11i (11.5.10) instances, skip to other solutions above for EBS 12.1 and later:
Reference note ID 418130.1 :
Cause: Un-synchronized data in APPLSYS.WF_LOCAL_USER_ROLES:HZ_PARTY
Solution:
For non-OATM instances: log in as APPS user and run below
sql>
begin apps.wf_local_synch.BULKSYNCHRONIZATION(P_ORIG_SYSTEM=>'ALL',
P_PARALLEL_PROCESSES=>2,
P_LOGGING=>'LOGGING', P_RAISEERRORS=>TRUE,
P_TEMPTABLESPACE=>'APPLSYSX'); END; /
For OATM instances:
sql>
begin apps.wf_local_synch.BULKSYNCHRONIZATION(P_ORIG_SYSTEM=>'ALL',
P_PARALLEL_PROCESSES=>2,
P_LOGGING=>'LOGGING', P_RAISEERRORS=>TRUE,
P_TEMPTABLESPACE=>'APPS_TS_TX_DATA');
END;
/
0 Comments