FRM-92101 there was a failure in form Server startup
This issue will solved only if yo will Install same version of openmotif as mentioned in Installation document. If you have higher version of rpm then its simply not going to workout.
Required version of openmotif rpm – openmotif21-2.1.30-11.EL5.i386.rpm
Actual version exists on system – openmotif22-2.2.3-18.EL5.i386.rpm
If you do not want to Install the old version of rpm and want to access the forms using the same rpm “openmotif22-2.2.3-18.EL5.i386.rpm” then this is the post/article which you’re looking for :
Form error message:
Its looking for the library file “libXm.so.2” in /usr/lib which does not exists on the server.
The rpm openmotif22-2.2.3-18.EL5.i386.rpm will deliver the higher version of library file then expected:
[root@tir12vis Server]# cd /usr/lib
[root@tir12vis lib]# ls -l libXm.so*
lrwxrwxrwx 1 root root 14 Oct 19 11:31 libXm.so -> libXm.so.4.0.1
lrwxrwxrwx 1 root root 14 Oct 19 11:24 libXm.so.3 -> libXm.so.3.0.2
-rwxr-xr-x 1 root root 2549484 Sep 9 2011 libXm.so.3.0.2
lrwxrwxrwx 1 root root 14 Oct 19 11:27 libXm.so.4 -> libXm.so.4.0.1
-rwxr-xr-x 1 root root 2645484 Oct 28 2011 libXm.so.4.0.1
[root@tir12vis lib]# ls -l libXm.so*
lrwxrwxrwx 1 root root 14 Oct 19 11:31 libXm.so -> libXm.so.4.0.1
lrwxrwxrwx 1 root root 14 Oct 19 11:24 libXm.so.3 -> libXm.so.3.0.2
-rwxr-xr-x 1 root root 2549484 Sep 9 2011 libXm.so.3.0.2
lrwxrwxrwx 1 root root 14 Oct 19 11:27 libXm.so.4 -> libXm.so.4.0.1
-rwxr-xr-x 1 root root 2645484 Oct 28 2011 libXm.so.4.0.1
[root@tir12vis lib]#
If we Install rpm openmotif21-2.1.30-11.EL5.i386.rpm then it will generate library libXm.so.2.
Solution:-
[root@tir12vis lib]# cp libXm.so.3.0.2 libXm.so.2.0.2
[root@tir12vis lib]# ln -s libXm.so.2.0.2 libXm.so.2
[root@tir12vis lib]#
[root@tir12vis lib]# ln -s libXm.so.2.0.2 libXm.so.2
[root@tir12vis lib]#
Note:- After modification restart your middle tiers your forms access should work as expected with no more error messages.
Comments
Post a Comment