R12.2 Apps DBA. Powered by Blogger.

FRM 92101 There was a failure in the forms server during start up

No comments :
FRM 92101 There was a failure in the forms server during start up. This could happen due to invalid configuration.
Logfile location:
$LOG_HOME/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
Example Log file:
12/07/06 02:55:04 FormsServlet init():
    configFileName:     /R12/oracle/APPS_R12/apps/test_testr12/ora/10.1.2/forms/server/appsweb.cfg
    testMode:           false
12/07/06 02:55:05 Oracle Containers for J2EE 10g (10.1.3.4.0)  initialized
12/07/06 03:17:36 ListenerServlet init()
 12/07/06 03:17:41 Forms session <1> aborted: runtime process failed during startup with errors /R12/oracle/APPS_R12/apps/tech_st/10.1.2/bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
 12/07/06 03:19:36 Forms session <2> aborted: runtime process failed during startup with errors /R12/oracle/APPS_R12/apps/tech_st/10.1.2/bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
 Cause:
The cause is not unusual with Linux, or Oracle, or Oracle Apps. It’s that Oracle Forms is looking for a library file. But the file doesn’t exist in the expected place. Nor does a link. Not again.
In this case, libXm.so.2 can’t be found.
Solution:
Check this directory and below mentioned files "/usr/X11R6/lib".
/usr/lib/libMrm.so.3.0.2
/usr/lib/libMrm.so.4.0.1
/usr/lib/libUil.so.3.0.2
/usr/lib/libUil.so.4.0.1
/usr/lib/libXm.so.3.0.2
/usr/lib/libXm.so.4.0.1
If its not there then create it below mentioned manner,
1. As root:
mkdir -p /usr/X11R6/lib
2. Make Links To The Original Files:
cd /usr/X11R6/lib
ln -s /usr/lib/libMrm.so.3.0.2 .
ln -s /usr/lib/libMrm.so.4.0.1 .
ln -s /usr/lib/libUil.so.3.0.2 .
ln -s /usr/lib/libUil.so.4.0.1 .
ln -s /usr/lib/libXm.so.3.0.2 .
ln -s /usr/lib/libXm.so.4.0.1 .
Make Links With An Abbreviated Name:
ln -s /usr/lib/libXm.so.3.0.2 libXm.so.3
ln -s /usr/lib/libXm.so.4.0.1 libXm.so.4
ln -s /usr/lib/libXm.so.4.0.1 libXm.so
ln -s /usr/lib/libUil.so.4.0.1 libUil.so.4
ln -s /usr/lib/libUil.so.3.0.2 libUil.so.3
ln -s /usr/lib/libUil.so.4.0.1 libUil.so
ln -s /usr/lib/libMrm.so.4.0.1 libMrm.so.4
ln -s /usr/lib/libMrm.so.3.0.2 libMrm.so.3
ln -s /usr/lib/libMrm.so.4.0.1 libMrm.so
ln -s /usr/lib/libMrm.so.3.0.2 libMrm.so.2
ln -s /usr/lib/libUil.so.3.0.2 libUil.so.2
ln -s /usr/lib/libXm.so.3.0.2 libXm.so.2
3. Check the issue again forms will open without FRM 92101 error.

No comments :

Post a Comment

Note: only a member of this blog may post a comment.