Home » Infrastructure » Linux » oracle 10g installation on OEL 4.5 (oracle 10g , OEL 4.4 , )
oracle 10g installation on OEL 4.5 [message #553683] Mon, 07 May 2012 19:24 Go to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
Hi to all ;

Today i am installing oracle 10g on OEL 4.5 . While running ./runInstaller i am facing few errors . Can anyone clear my doubt ????
Why error msg shows regarding REDHAT LINUX.

Checking operating system requirements ...
Expected result: One of redhat-3,redhat-4,SuSE-9,asianux-1,asianux-2
Actual Result: redhat-4
Check complete. The overall result of this check is: Passed
=======================================================================

Checking operating system package requirements ...
Checking for make-3.79; found make-1:3.80-6.EL4.	Passed
Checking for binutils-2.14; found binutils-2.15.92.0.2-21.	Passed
Checking for gcc-3.2; found Not found.	Failed <<<<
Checking for libaio-0.3.96; found Not found.	Failed <<<<
Check complete. The overall result of this check is: Failed <<<<
Problem: Some packages required for the Oracle Database 10g to function properly are missing (see above).
Recommendation: Install the required packages before continuing with the installation.




My bash profile details

# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1; export ORACLE_HOME
ORACLE_SID=TSH1; 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
#LD_ASSUME_KERNEL=2.4.1; export LD_ASSUME_KERNEL

if [ $USER = "oracle" ]; then
  if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
  else
    ulimit -u 16384 -n 65536
  fi
fi



Thanks and Regards
Thiyagusham .G

[Updated on: Mon, 07 May 2012 19:24]

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #553686 is a reply to message #553683] Mon, 07 May 2012 20:31 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
>Why error msg shows regarding REDHAT LINUX.

Recommendation: Install the required packages before continuing with the installation.
Re: oracle 10g installation on OEL 4.5 [message #553687 is a reply to message #553686] Mon, 07 May 2012 20:51 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@blackswan

OEL by default having all required rpm's. I done oracle installation few months back without any error but i did n't use current bash_profile contents. I never seen error regarding redhat packages.I will show old bash_profile contents. My question is does the error belong bash_profile contents ????

OLD BASH_PROFILE CONTENTS
 

LD_ASSUME_KERNEL= 2.4.1
export LD_ASSUME_KERNEL  

ORACLE_BASE=  /home/Oracle
ORACLE_HOME = $ORACLE_BASE/product/9.2.0
	ORACLE_SID= test
	ORACLE_TERM= xterm 	
            ORA_NLS33= $ORACLE_HOME/ocommon/nls/admin/data
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/local/lib:$ORACLE_HOME/network/lib	

export  LD_LIBRARY_PATH ORACLE_BASE  ORACLE_HOME ORACLE_SID ORACLE_TERM ORA_NLS33

PATH=$PATH: $ ORACLE_HOME/bin:/usr/local/jre/bin
export PATH

export DISPLAY = localhost: 0.0	


Note : Additionly i did n't install any RPM's while installing oracle on OEL 4.5 few months back. but now why can't ?????

Thanks and Regards
Thiyagusham.G

[Updated on: Mon, 07 May 2012 20:54]

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #553688 is a reply to message #553687] Mon, 07 May 2012 20:59 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
You do not have to convince me about anything which may or may not have happened months ago or earlier today.
OUI is not satisfied with existing configuration & informed what needs to be done to proceed.
You can waste more time complaining that things are not the same as before or you can work to make OUI happy.
I don't care one way or the other if this gets resolved by you or not.
Re: oracle 10g installation on OEL 4.5 [message #554284 is a reply to message #553688] Fri, 11 May 2012 17:15 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ Blackswan

Yet not finished oracle installation . Having problem with RPM installation
" Already I spent 3 days ... I cant spend much time ..... please help me! "

1. I installed gcc package many times continuously i got errorr.
[root@dhcppc1 GCC]# rpm -ivh gcc-3.2-1.i386.rpm
Preparing...                ########################################### [100%]
        file /usr/lib/libstdc++.so.5 from install of gcc-3.2-1 conflicts with file from package compat-libstdc++-33-3.2.3-47.3
        file /usr/bin/cpp from install of gcc-3.2-1 conflicts with file from package cpp-3.4.6-3.1
[root@dhcppc1 GCC]# cd
[root@dhcppc1 ~]# rpm -qa gcc
[root@dhcppc1 ~]# rpm -qi gcc
package gcc is not installed


I suspect liabio package


[root@dhcppc1 hgfs]# cd Libaio
[root@dhcppc1 Libaio]# ls -l
total 8
-rwxrwxrwx 1 root root 15633 May 11 22:46 libaio-0.3.96-3.i386.rpm
[root@dhcppc1 Libaio]# rpm -ivh libaio-0.3.96-3.i386.rpm
warning: libaio-0.3.96-3.i386.rpm: V3 DSA signature: NOKEY, key ID 733076
Preparing... ########################################### [100%]
1:libaio ########################################### [100%]


2. Was it installed perfectly ??? Warning msg also there ????

3. What is the specific URL to download requird RPM ?
??

Thanks and Regards;
Thiyagusham.G

Re: oracle 10g installation on OEL 4.5 [message #554306 is a reply to message #554284] Sat, 12 May 2012 08:16 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ hi ;

Anyone can reply ! MAy i know why it takes long time ???? > Anything wrong what i posted ????

[Updated on: Sat, 12 May 2012 08:31]

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #554315 is a reply to message #554306] Sat, 12 May 2012 09:25 Go to previous messageGo to next message
Littlefoot
Messages: 21806
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
I don't think that there's anything wrong with your message. However, it is weekend and posting frequency during these days is lower then usually so - be patient. On the other hand, maybe nobody knows the answer for your question and simply doesn't have anything to say. If that's the case and you are in a hurry, consider hiring a consultant.
Re: oracle 10g installation on OEL 4.5 [message #554346 is a reply to message #554315] Sun, 13 May 2012 05:46 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ littlefoot

I very much struggling to install oracle.
" I hug failure one by one! " I searched in google cant findout for my ERROR.

I faced one error here ....
Quote:

OUI 25031 some of the configuration assistants failed..
" Not successfully running any "Recommended" assistants means your system wont be configured correctly.

1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
2. Fix the errors causing these failures.
3. Select the failed assistants and click the 'Retry' button to retry them.


The "/home/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.

Thanks & Regards
Thiyagusham.G

[Updated on: Sun, 13 May 2012 06:09] by Moderator

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #554347 is a reply to message #554346] Sun, 13 May 2012 06:10 Go to previous messageGo to next message
Michel Cadot
Messages: 68625
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Codee tags are for code, [quote] tags are for quote.
Use the "Preview Message" button to verify.

Regards
Michel
Re: oracle 10g installation on OEL 4.5 [message #554349 is a reply to message #554347] Sun, 13 May 2012 06:24 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ mike

Sorry for keying Error by mistake i hit some keys .... I did n't notice ....
May i know my answer .... ? I lost no of days .....

OUI 25031 some of the configuration assistants failed.. 
" Not successfully running any "Recommended" assistants means your system wont be configured correctly. 


Quote:

1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
2. Fix the errors causing these failures.
3. Select the failed assistants and click the 'Retry' button to retry them.

The "/home/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.


Thanks
Thiyagu G

[Updated on: Sun, 13 May 2012 06:45] by Moderator

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #554350 is a reply to message #554349] Sun, 13 May 2012 09:49 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ mike

May i know my answer right now. I have to finish immediately ... I expect answer from you. Cant find solution i tried much ...expecting , Reply me...

Thanks and Regards
Thiyagusham.G

Re: oracle 10g installation on OEL 4.5 [message #554351 is a reply to message #554349] Sun, 13 May 2012 09:58 Go to previous messageGo to next message
Littlefoot
Messages: 21806
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
I don't use Linux.

Regarding information you posted so far, I understood that you actually installed Oracle, but some "assistant" scripts failed. The message says that you should run these scripts outside of OUI (which would be - as far as I understood - from the command line). So, did you do that?

Just a remark: did you read and follow the installation guide VERY carefully? Did you make sure all prerequisites were met before running the OUI? You said that you successfully installed it some time ago, but now some "rpms" are missing (whatever they are). Things usually don't change all by themselves. If things are screwed up, would it be possible to start over (I mean: reformat the disk, reinstall operating system & Oracle)?
Re: oracle 10g installation on OEL 4.5 [message #554354 is a reply to message #554350] Sun, 13 May 2012 12:14 Go to previous messageGo to next message
John Watson
Messages: 8922
Registered: January 2010
Location: Global Village
Senior Member
Hello. Installing an Oracle database on a release of Linux as old as 4.5 is awful. I remember doing it. You may have to spend days finding and downloading any number of RPMs. You'll install 20 of them, and then the 21st will fail because of dependencies. So you have to install a whole lot more. This is where you are at the moment: you are trying to install gcc, but you have a version that doesn't match your Linux installation.
Is there any reason for not installing a better release of Linux? OEL 5.7 is probably best unless you need 6.x facilities, download it from edelivery.oracle.com. If you miss any of the required packages during the installation, they are all on the distribution DVD.
Re: oracle 10g installation on OEL 4.5 [message #554355 is a reply to message #554351] Sun, 13 May 2012 12:18 Go to previous messageGo to next message
John Watson
Messages: 8922
Registered: January 2010
Location: Global Village
Senior Member
Quote:
some "rpms" are missing (whatever they are)
Hi, man. "RPM" is "Redhat Package Manager". Many Linux programs, and most patches, are distributed as a file named XXX.rpm which you install with the rpm utility. So people call the RPMs.
Re: oracle 10g installation on OEL 4.5 [message #554442 is a reply to message #554355] Mon, 14 May 2012 09:21 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ hello to everyone


I planning to install oracle 10g on OEL 5. because i have only LINUX 5 ISO image. where can i download LINUX 5.7 I am searching with Google ... I cant find good doc especially for ORACLE 10g on OEL 5 . So many documents based on RHEL 5 only.Can anyone assist me What is the exact URL or doc to follow the procedures to install oracle 10g on OEL 5. IS there any free sites to download OEL 5 or 5.5 ??

Thanks and Regards
Thiyagusham.G



Re: oracle 10g installation on OEL 4.5 [message #554443 is a reply to message #554442] Mon, 14 May 2012 09:26 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
>I planning to install oracle 10G
10g is no longer fully supported by Oracle.
consider installing V11.2 instead
Re: oracle 10g installation on OEL 4.5 [message #554445 is a reply to message #554443] Mon, 14 May 2012 09:55 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ blackswan
I am a ORACLE DBA trainee right now they provide training on ORCL10g only. I think linux working environment is common to all version. I think while install oracle need to download some packages.
Am i right ???? If so , i don't want to focus linux deeply that why i am asking 10g with high reliable Linux versions. I am very new to Oracle as well as Linux
Hope you can understand my situation.
I Need Which linux (OEl) is better for 10G ???? Previously i asked where to download everything ????

Thanks & Regards
Thiyagusham.G
Re: oracle 10g installation on OEL 4.5 [message #554457 is a reply to message #554355] Mon, 14 May 2012 12:06 Go to previous messageGo to next message
Littlefoot
Messages: 21806
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
@John: thank you for the RPM explanation.

I suppose Google would have told me that, but - that day we've had an argue and it wasn't my friend. We're fine now.
Re: oracle 10g installation on OEL 4.5 [message #554459 is a reply to message #554445] Mon, 14 May 2012 12:12 Go to previous messageGo to next message
John Watson
Messages: 8922
Registered: January 2010
Location: Global Village
Senior Member
Quote:
I Need Which linux (OEl) is better for 10G ???? Previously i asked where to download everything ????
I've already told you what version to use, and from where to download it. One thing you must learn as a trainee is read the answers to your questions, man.
Re: oracle 10g installation on OEL 4.5 [message #554498 is a reply to message #554459] Mon, 14 May 2012 23:04 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ watson

Thank you for your information ...

Thanks and Regards
Thiyagusham G
icon14.gif  Re: oracle 10g installation on OEL 4.5 [message #554575 is a reply to message #554498] Tue, 15 May 2012 12:08 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ hai to all;

I attached screen shot .Please review it I want to know cause of reason > I am almost lost here .....Runinstaller not running I spent too much days ....
Clerly i attached screen shot i am expecting kind reply .. I lost myself .....

" Actually I done this using "ORACLE USER" only even root user also
" showing same result only "
"


Thank you
Thiyagusham.G
  • Attachment: up1.png
    (Size: 172.99KB, Downloaded 1336 times)

[Updated on: Tue, 15 May 2012 13:00]

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #554593 is a reply to message #554575] Tue, 15 May 2012 21:27 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ hello to everyone

I need to finish few things immediately. should i wait some more time ??? please reply me! Already one week crossed for my work . Please reply me and help me!
I tried very much still struggling to know about linux...

Thank you;
Thiyagusham.G
Re: oracle 10g installation on OEL 4.5 [message #554596 is a reply to message #554593] Tue, 15 May 2012 22:27 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
It might work better if/when directory name does NOT contain any space character.
All files involving Oracle software should be owned by OS user oracle as specified in the Installation Guide.
Consider to Read The Fine Manual; Installation Guide found at http://tahiti.oracle.com
Re: oracle 10g installation on OEL 4.5 [message #554717 is a reply to message #554596] Wed, 16 May 2012 17:01 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ Hi to everyone!

Finally i got succeed! Thanks to everyone for kind help! I done my job Quote:
it took 8 days and 13 attempts


@ watson :

please clear my doubt ....

1 May i know difference between RPM's and PAckages ... (please i am simple and expect clear explanation)
2 Quote:
when i issued rpm -qa it listed no of xxxxxxxx (some names).
is it package ???
is it non run RPM's ????
3. OEL cant download from edelivery.oracle.com. . I don't have that much of power i mean it asks company username and password.
Higher level members only they are using .... but i want to download higher version ... IS there any other site ???


Thanks and Regards
Thiyagusham.G

.
Re: oracle 10g installation on OEL 4.5 [message #554821 is a reply to message #554717] Thu, 17 May 2012 12:21 Go to previous messageGo to next message
thiyagusham
Messages: 112
Registered: April 2012
Location: Chennai
Senior Member
@ hai to everyone
No one replied .. why so ????.

Thanks & Regards
Thiyagusham.G

[Updated on: Thu, 17 May 2012 12:21]

Report message to a moderator

Re: oracle 10g installation on OEL 4.5 [message #554836 is a reply to message #554821] Thu, 17 May 2012 14:58 Go to previous message
Littlefoot
Messages: 21806
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
Because this is just a forum. People answer when they know the answer (I'm not the one), have some free time (I do at the moment) and feel like answering certain questions (me again, but you won't benefit from it).

There's nothing much you can do but be patient. Or google (a lot). Or ask the question elsewhere. Or hire a consultant. Pick one.
Previous Topic: Not able to access oracle installed in VM Ware Linux.
Next Topic: oracle 10g installation Why ORAINSTROOT.SH & ROOT.SH scripts to be executed ... on OEL 4.5
Goto Forum:
  


Current Time: Thu Mar 28 13:45:51 CDT 2024