TDP for Oracle on linux issue

[root@ linux86_64]# ./5.4.1.0-TIV-TSMORA-LinuxX64.bin

Initializing Wizard........
Launching InstallShield Wizard........



The wizard cannot continue because of the following error: could not load wizard specified in /wizard.inf (104)
WARNING: could not delete temporary file /tmp/ismp001/5247695
WARNING: could not delete temporary file /tmp/ismp001/642682

[root@ linux86_64]#



Still hitting the same error. anyone can lend a hand?

Linux 2.6.18-194.3.1.el5 #1 SMP 2010 x86_64 x86_64 x86_64 GNU/Linux

Yes, check the procedure to solve java issue to install TDPO in Linux.

Down load IBM java from www.software.ibm.com file name ibm-java2-x86_64-jre-5.0-15.0.x86_64.rpm. install libstdc++ and compat-libstdc++-33 and libXp-1.0.0-8.1.el5
[root@tw-test mnt]# yum install libXp*
[root@tw-test mnt]# yum install libstdc*
[root@tw-test mnt]# yum install compat-lib*
[root@tw-test mnt]#rpm –ivh ibm-java2-x86_64-jre-5.0-15.0.x86_64.rpm

After installation check SElinux setting
If Java is not installed in the default directory, or you have to enable Java manually on PPC platforms, enter this command:
chcon -R -t texrel_shlib_t <path_of_sdk>
Where <path_of_sdk> is the path where Java is installed.

Or disable the SElinux.
#vi /etc/profile.d/java.sh
In that file write the following:

export JAVA_HOME=[FONT=&quot]/opt/ibm/java2-x86_64-50/jre[/FONT]
export PATH=$JAVA_HOME/bin:$PATH

Save and exit. Next type:

#source /etc/profile.d/java.sh
# alternatives --config java

Selection Command
-----------------------------------------------
*+ 1 /usr/lib/jvm/jre-1.6.0-openjdk/bin/java
Enter to keep the current selection[+], or type selection number:1

your will see the preconfigured jre
To install ur preferred jvm u have to do the following:

[root@tw-test mnt]# alternatives --install /usr/bin/java java /opt/ibm/java2-x86_64-50/jre/bin/java 2

[root@tw-test mnt]# alternatives --config java

There are 4 programs which provide 'java'.

Selection Command
-----------------------------------------------
* 1 /usr/lib/jvm/jre-1.4.2-gcj/bin/java
+ 2 /opt/ibm/java2-x86_64-50/jre/bin/java

Enter to keep the current selection[+], or type selection number:

Now it works fine.
Thanks
Abdur Rouf
 
Back
Top