While executing rapidwiz for Online EBS 12.2.0 installation, facing an error related to jre file:
libXtst.so.6: cannot open shared object file: No such file or directory
1. The libXtst.so.6 file is getting accessed by rapidwiz from /u01/app/oracle/patch/R122v50/Stage/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/.
The RapidWiz is invoked from : /u01/app/oracle/patch/R122v50/Stage/startCD/Disk1/rapidwiz
2. The TMPDIR And _java_options are already set , before executing runit.sh , also made sure to manually set the values and execute. But no Luck.
3. Created a softlink :
$ pwd
/u01/app/oracle/patch/R122v50/Stage/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt
$ ls -ltr
total 352
-rwxrwxrwx 1 applmgr oinstall 353146 May 26 2015 libmawt.so
lrwxrwxrwx 1 applmgr dba 23 Jun 6 11:05 libXtst.so.6 -> /usr/lib64/libXtst.so.6
However after this the rapidwiz gives error: libxtst.so.6 wrong elf class. This dint resolve.
Resolution:
when compared on a server where already installation was successfully completed, saw the below mentioned OS package missing:
$ rpm -qa --qf='%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n' xorg-x11-libs*
xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386
$
The above package wasn't existing in the server, where we had issue:
$ rpm -qa --qf='%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n' xorg-x11-libs*
$
Installed the below packages:
xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm
binutils-2.17.50.0.6-6.0.1.el5.i386.rpm
Performed the below:
# unlink /usr/lib/libXtst.so.6
# ln -s /usr/X11R6/lib/libXtst.so.6.1 /usr/lib/libXtst.so.6
Resolved !!!!
No comments:
Post a Comment