LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-04-2017, 05:12 AM   #1
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Rep: Reputation: Disabled
centOS6.4 error Oracle Application Server SOA10.13.10 runInstaller


hi

while i am installing OAS 10.13.10 i have the following pb



[oracle@localhost ~]$ cd /u01/app/oracle/product/10.1.3/OracleAS_1/

[oracle@localhost OracleAS_1]$ ls

doc

install

runInstaller

stage



[oracle@localhost OracleAS_1]$ ./runInstaller -ignoreSysPrereqs

Starting Oracle Universal Installer

Checking installer requirements...

Checking operating system version: must be redhat-Red Hat Enterprise Linux AS release 3, redhat-Red Hat Enterprise Linux AS release 4, redhat-Red Hat Enterprise Linux ES release 3, redhat-Red Hat Enterprise Linux ES release 4 or SuSE-9 Passed



All installer requirements met.

Checking Temp space: must be greater than 400 MB. Actual 47627 MB Passed

Checking swap space: must be greater than 512 MB. Actual 1973MB Passed

Checking monitor: must be configured to display at least 256 colors Failed <<<<

>>> Could not execute auto check for display colors using command /usr/X11R6/bin/xdpyinfo. Check if the DISPLAY variable is set.

Checking if CPU speed is above 300 MHz. Actual 2394 MHz Passed





Preparing to launch Oracle Universal Installer from /tmp/OraInstall2017-04-02_11-38-45PM. Please wait ...[oracle@localhost OracleAS_1]$ java.lang.UnsatisfiedLinkError: /tmp/OraInstall2017-04-02_11-38-45PM/jre/1.4.2/lib/i386/libawt.so: libXtst.so.6: cannot open shared object file: No such file or directory

at java.lang.ClassLoader$NativeLibrary.load(Native Method)



there is some information related to this pb

[root@localhost /]# find -name libXtst.so.6

./usr/lib64/libXtst.so.6

./u01/app/oracle/product/11.2.0.4/db_1/lib/stubs/libXtst.so.6





[root@localhost /]# cd /usr/lib64/

[root@localhost lib64]# ls -l | grep libXts

lrwxrwxrwx. 1 root root 16 Mar 23 00:42 libXtst.so.6 -> libXtst.so.6.1.0

-rwxr-xr-x 1 root root 26096 Feb 21 2013 libXtst.so.6.1.0





[oracle@localhost ~]$ vi /home/oracle/.bash_profile


# User specific environment and startup programs



PATH=$PATH:$HOME/bin



export PATH

# Oracle Settings

TMP=/tmp; export TMP

TMPDIR=$TMP; export TMPDIR



ORACLE_HOSTNAME=cent6.mydomain.com; export ORACLE_HOSTNAME

ORACLE_UNQNAME=orcl; export ORACLE_UNQNAME

ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE

ORACLE_HOME=$ORACLE_BASE/product/11.2.0.4/db_1; export ORACLE_HOME

ORACLE_SID=orcl; export ORACLE_SID

ORACLE_TERM=xterm; export ORACLE_TERM

PATH=/usr/sbin:$PATH; export PATH

PATH=$ORACLE_HOME/bin:$PATH; export PATH



LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH

CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH





#SOA10.13.10 set variable envirement

TMP=/tmp; export TMP

TMPDIR=$TMP; export TMPDIR

ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE

ORACLE_HOME=$ORACLE_BASE/product/10.1.3/OracleAS_1; export ORACLE_HOME

ORACLE_TERM=xterm; export ORACLE_TERM

PATH=/usr/sbin:$ORACLE_HOME/bin:$PATH; export PATH

PATH=$PATH:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin; export PATH

PATH=$PATH:$ORACLE_HOME/Apache/Apache/bin; export PATH



if [ $USER = "oracle" ]; then

if [ $SHELL = "/bin/ksh" ]; then

ulimit -p 16384

ulimit -n 65536

else

ulimit -u 16384 -n 65536

fi

fi



PS1="`hostname`> "

set -o emacs

set filec



Any suggestions will be appreciated.
 
Old 04-04-2017, 06:12 AM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
Hi,

Have a look here

Regards
 
1 members found this post helpful.
Old 04-04-2017, 06:13 AM   #3
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Hi and welcome to LQ.

Suggest you change your username from an email address, please use the Contact Us link at the bottom of the page.

You don't show any final error, but this is something to check out:
Code:
Checking monitor: must be configured to display at least 256 colors Failed <<<<

>>> Could not execute auto check for display colors using command /usr/X11R6/bin/xdpyinfo. Check if the DISPLAY variable is set.

Last edited by rtmistler; 04-04-2017 at 06:14 AM.
 
Old 04-04-2017, 06:22 AM   #4
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by bathory View Post
Hi,

Have a look here

Regards
Hi Mr
ichecked the link you have sent and i excecite the follwoing command
ln -s /usr/X11R6/lib/libXtst.so.6 /usr/lib/libXtst.so.6
and i re execute
[oracle@localhost OAS101310]$ ./runInstaller -ignoreSysPrereqs

still the same probleme. is there any seggestions??
 
Old 04-04-2017, 06:27 AM   #5
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
Hi and welcome to LQ.

Suggest you change your username from an email address, please use the Contact Us link at the bottom of the page.

You don't show any final error, but this is something to check out:
Code:
Checking monitor: must be configured to display at least 256 colors Failed <<<<

>>> Could not execute auto check for display colors using command /usr/X11R6/bin/xdpyinfo. Check if the DISPLAY variable is set.
i dont think this is the main pb beacause i have seen like this pb while i was installing oracle 11g it was the same probelme about libXtst.so.6
 
Old 04-04-2017, 06:30 AM   #6
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
You're not posting the actual problem you're just posting the commands you've tried and none of the outcome.
 
Old 04-04-2017, 06:33 AM   #7
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
Quote:
Originally Posted by abdmet74@gmail.com View Post
Hi Mr
ichecked the link you have sent and i excecite the follwoing command
ln -s /usr/X11R6/lib/libXtst.so.6 /usr/lib/libXtst.so.6
and i re execute
[oracle@localhost OAS101310]$ ./runInstaller -ignoreSysPrereqs

still the same probleme. is there any seggestions??
You should have read the comments that follow the solution provided in the link I've posted.
Make sure that you have the libXtst 32bit version installed too
Code:
yum install libXtst.i686
 
Old 04-04-2017, 06:34 AM   #8
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
You're not posting the actual problem you're just posting the commands you've tried and none of the outcome.
here is my session
[oracle@localhost OAS101310]$ ./runInstaller -ignoreSysPrereqs
Starting Oracle Universal Installer...

Checking installer requirements...

Checking operating system version: must be redhat-Red Hat Enterprise Linux AS release 3, redhat-Red Hat Enterprise Linux AS release 4, redhat-Red Hat Enterprise Linux ES release 3, redhat-Red Hat Enterprise Linux ES release 4 or SuSE-9
Passed


All installer requirements met.

Checking Temp space: must be greater than 400 MB. Actual 44685 MB Passed
Checking swap space: must be greater than 512 MB. Actual 1883MB Passed
Checking monitor: must be configured to display at least 256 colors Failed <<<<
>>> Could not execute auto check for display colors using command /usr/X11R6/bin/xdpyinfo. Check if the DISPLAY variable is set.
Checking if CPU speed is above 300 MHz. Actual 2394 MHz Passed

>>> Ignoring optional pre-requisite failures. Continuing...

Preparing to launch Oracle Universal Installer from /tmp/OraInstall2017-04-04_04-33-39AM. Please wait ...[oracle@localhost OAS101310]$ java.lang.UnsatisfiedLinkError: /tmp/OraInstall2017-04-04_04-33-39AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1560)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1477)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:834)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
at java.awt.Component.<clinit>(Component.java:506)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at oracle.help.Help.<init>(Unknown Source)
at oracle.help.Help.<init>(Unknown Source)
at oracle.help.Help.<init>(Unknown Source)
at oracle.as.install.util.HelpManager.configure(Unknown Source)
at oracle.as.install.action.HelpConfigAction.execute(Unknown Source)
at oracle.as.install.util.ActionQueue.run(Unknown Source)
at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(Unknown Source)
Exception in thread "main" java.lang.NoClassDefFoundError: java.awt.Container
at oracle.as.install.util.OneClickErrorDialog.<init>(Unknown Source)
at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(Unknown Source)
 
Old 04-04-2017, 06:37 AM   #9
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by bathory View Post
You should have read the comments that follow the solution provided in the link I've posted.
Make sure that you have the libXtst 32bit version installed too
Code:
yum install libXtst.i686

i checked it
[root@localhost /]# yum install libXtst.i686
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
* base: mirror.as24220.net
* extras: mirror.as24220.net
* updates: mirror.as24220.net
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package libXtst.i686 0:1.2.2-2.1.el6 will be installed
--> Processing Dependency: libXi.so.6 for package: libXtst-1.2.2-2.1.el6.i686
--> Running transaction check
---> Package libXi.x86_64 0:1.6.1-3.el6 will be updated
---> Package libXi.i686 0:1.7.4-1.el6 will be installed
---> Package libXi.x86_64 0:1.7.4-1.el6 will be an update
--> Finished Dependency Resolution
Error: Multilib version problems found. This often means that the root
cause is something else and multilib version checking is just
pointing out that there is a problem. Eg.:

1. You have an upgrade for libXtst which is missing some
dependency that another package requires. Yum is trying to
solve this by installing an older version of libXtst of the
different architecture. If you exclude the bad architecture
yum will tell you what the root cause is (which package
requires what). You can try redoing the upgrade with
--exclude libXtst.otherarch ... this should give you an error
message showing the root cause of the problem.

2. You have multiple architectures of libXtst installed, but
yum can only see an upgrade for one of those arcitectures.
If you don't want/need both architectures anymore then you
can remove the one with the missing update and everything
will work.

3. You have duplicate versions of libXtst installed already.
You can use "yum check" to get yum show these errors.

...you can also use --setopt=protected_multilib=false to remove
this checking, however this is almost never the correct thing to
do as something else is very likely to go wrong (often causing
much more problems).

Protected multilib versions: libXtst-1.2.2-2.1.el6.i686 != libXtst-1.2.1-2.el6.x86_64
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
[root@localhost /]#
 
Old 04-04-2017, 06:37 AM   #10
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Please follow up on bathory's link, they are absolutely correct about your problem.
 
Old 04-04-2017, 06:44 AM   #11
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
Please follow up on bathory's link, they are absolutely correct about your problem.
hi Mr
i checked the link, there is no detail about how i must do to overpass my problem..plz can you give me more details on how can i solve it.thank you
 
Old 04-04-2017, 06:49 AM   #12
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
You need to follow-up on the output result from when you tried, yum install libXtst.i686 and then retry running the installer. You however need to resolve the issue with libXtst.i686.

What distribution and version are you running?
 
1 members found this post helpful.
Old 04-04-2017, 06:55 AM   #13
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
You need to follow-up on the output result from when you tried, yum install libXtst.i686 and then retry running the installer. You however need to resolve the issue with libXtst.i686.

What distribution and version are you running?
here is Technica Envirement
cnetOS 6.4
Oracle Data Base Release 11.2.0.1.0
soa_linux_x86_10.1.3.1.0
Vmware@workstation 9.0.1 build-894247
 
Old 04-04-2017, 06:56 AM   #14
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
Quote:
Protected multilib versions: libXtst-1.2.2-2.1.el6.i686 != libXtst-1.2.1-2.el6.x86_64
I don't use multilib stuff, but I guess you have to update the 64bit version first and then install the 32bit version
 
Old 04-04-2017, 07:07 AM   #15
abdmet74@gmail.com
LQ Newbie
 
Registered: Apr 2017
Location: beirut
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by bathory View Post
I don't use multilib stuff, but I guess you have to update the 64bit version first and then install the 32bit version
plz can you give me more detail about this suggestion
thank you
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Oracle runInstaller won't load on RHEL6 with Exceed MensaWater LinuxQuestions.org Member Success Stories 0 11-30-2012 06:45 AM
Installing Oracle 9.2: runInstaller gives Segmentation Fault deanbrown3d Linux - Newbie 3 06-21-2004 09:39 PM
runInstaller problem for installing Oracle 8i in Linux Wasim Haider Linux - General 8 07-28-2003 11:09 AM
Oracle Installation / runInstaller error ultraman Linux - Software 9 05-31-2003 05:47 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:42 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration