8
Jul

Failure in the Forms Server during startup

Error: FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.

Java Exception
oracle.forms.net.ConnectionException:Forms sessionfailed during startup:no response from runtime process
at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
at oracle.forms.net.HTTPNStream.getResponse(Unknown source)
at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
at oracle.forms.net.HTTPNStream.flush(Unknown Source)
at java.io.DataOutputStream.flush(Unknown source)

Check the forms server log file.
$LOG_HOME/ora/10.1.3/opmn/forms_default_group_1/formsstd.out

FormsServlet init():
configFileName: /u01/testapps/inst/apps/test_ebstmpdb2-mgmt/ora/10.1.2/forms/server/appsweb.cfg
testMode: false
Oracle Containers for J2EE 10g (10.1.3.4.0) initialized
ListenerServlet init()
Forms session <1> aborted: runtime process failed during startup with errors /bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
Forms session <2> aborted: runtime process failed during startup with errors /bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
Forms session <3> aborted: runtime process failed during startup with errors /bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory

Solution:


Install the following RPM's
rpm -Uhv binutils-2.17.50.0.6-6.0.1.el5.x86_64.rpm
rpm -Uhv xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm
rpm -Uhv openmotif21-2.1.30-11.EL5.i386.rpm

Once the RPM's have been installed shut down the application services and relink the frmweb executable of forms server.

Stop the application services.
cd $ADMIN_SCRIPTS_HOME
adstpall.sh apps/apps

Relink frmweb executables.
$cd $ORACLE_HOME/forms/lib
$make -f ins_forms.mk install

Restart the application services.
adstrtal.sh apps/apps

Back to Top