EBS R12 Login Page Is Not Coming Up – java.lang.RuntimeException: Guest user/pwd does not exist or match: GUEST/ORACLE (Doc ID 1673030.1)
javax.servlet.ServletException: java.lang.RuntimeException: Guest user/pwd does not exist or match: GUEST/ORACLE
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:899)
solution – Javax.servlet.ServletException: Java.lang.RuntimeException: Guest User/pwd Does Not Exist Or Match (Doc ID 2419968.1)
ORA-29516: Aurora assertion failure: Assertion failure at jol.c:11157
joez mt-index botch; mt_index = 65535, vtbl_len = 12, static_len = 2
Javax.servlet.ServletException: Java.lang.RuntimeException: Guest User/pwd Does Not Exist Or Match (Doc ID 2419968.1)
select fnd_web_sec.validate_login(‘GUEST’,’ORACLE’) from dual;
After cloning an Oracle Applications 12.1.3 instance, the login page is being displayed as a blank page although the services are started and running. Upon running autoconfig in Oracle Applications, it displays the below error message:Unable to update GUEST_USER_PWD in database to GUEST/<PASSWORD> – Password was not changed
The below error is reported in the application.log:
javax.servlet.ServletException: java.lang.RuntimeException: Guest user/pwd does not exist or match: GUEST/<PASSWORD>
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:899)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:816)
at _AppsLocalLogin._jspService(_AppsLocalLogin.java:307)
Implement below steps:
1. Rebuild core JVM objects following below steps:
— Start of File Create_Java.sql
spool Create_Java.log
set echo on
connect / as sysdba
Alter system set JAVA_JIT_ENABLED=FALSE scope=both;
alter system set “_system_trig_enabled” = false scope=memory;
alter system set JOB_QUEUE_PROCESSES=0;
create or replace java system
/
@?/rdbms/admin/utlrp.sql
set echo off
spool off
exit
— End of File Create_Java.sql
2. Run autoconfig in DB node.
3. Run autoconfig in apps node.
4. Retest the issue.