Re: Oracle 9 on redhat 9...kernal settings

2003-07-07 Thread Dwayne Cox
Amazingly enough, I attended the Oracle class 'Managing Oracle on Linux' 
in May and they went over this is some detail.  Even though I had 
installed Oracle on Linux several times (SuSE and Red Hat flavors), I 
attended the class in hopes of picking up some tips.  I was not 
disappointed.  Setting the kernel parms on the fly was one of them.

Dwayne

Jack van Zanen wrote:
http://codah.net/install-oracle9iR2-on-redhat9.html



-Original Message-
Sent: Friday, July 04, 2003 7:39 PM
To: Multiple recipients of list ORACLE-L


Nice.  I haven't even looked at setting these parms in linux
in a couple years, didn't know this was available.
So, how do you set SHMMAX, etc on linux using sysctl?

The man pages weren't much help.

Jared

On Friday 04 July 2003 03:24, Markus Reger wrote:

standard kernel : no rebuild.
just use sysctl -p
after writing yr preeferred settings into /etc/sysctl.conf
for advanced linux guys: they can be set directly - but the previous 
way is more convinient.

in case you don't set them yr installation might hnag when creating 
the database instance. in this case just install the database later. 
means start dbassiost fter setting the kernel params. doesn't need a 
complete re-install.

kr


[EMAIL PROTECTED] 07/04/03 10:34 AM >>>
Hi Jared,

I ventured into my first red hat install not to long ago, but these 
parameters do do need a kernel rebuild (afaik)

Jack

-Original Message-
Sent: Thursday, July 03, 2003 7:21 PM
To: Multiple recipients of list ORACLE-L
Unless you've run into errors requiring adjustment of these 
parameters, don't bother with them.

I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching 
these.

Modifying them requires rebuilding the kernel, which can be quite a 
hassle.

It also invalidates Oracle support on linux.

Jared





John Dunn <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
07/03/2003 01:54 AM
Please respond to ORACLE-L
   To: Multiple recipients of list ORACLE-L
<[EMAIL PROTECTED]>

   cc:
   Subject:Oracle 9 on redhat 9...kernal settings
I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.

What should I set the Kernal parameters to. shmmax, shmmni, 
shmall, sem 

JD


--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Dwayne Cox
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Craig I. Hagan
> Nice.  I haven't even looked at setting these parms in linux
> in a couple years, didn't know this was available.

some are 2.4.x things, others are 2.2.x changes.

> So, how do you set SHMMAX, etc on linux using sysctl?

if you aren't sure, run "sysctl -a > /tmp/foo" which basically dumps your
entire proc layout. for shmmax, the variable is kernel.shmmax,
so you'd add a line:

kernel.shmmax = ##

then run sysctl -p

-- craig

> 
> The man pages weren't much help.
> 
> Jared
> 
> On Friday 04 July 2003 03:24, Markus Reger wrote:
> > standard kernel : no rebuild.
> > just use sysctl -p
> > after writing yr preeferred settings into /etc/sysctl.conf
> >
> > for advanced linux guys: they can be set directly - but the previous way is
> > more convinient.
> >
> > in case you don't set them yr installation might hnag when creating the
> > database instance. in this case just install the database later. means
> > start dbassiost fter setting the kernel params. doesn't need a complete
> > re-install.
> >
> > kr
> >
> > >>> [EMAIL PROTECTED] 07/04/03 10:34 AM >>>
> >
> > Hi Jared,
> >
> >
> > I ventured into my first red hat install not to long ago, but these
> > parameters do do need a kernel rebuild (afaik)
> >
> >
> > Jack
> >
> >
> > -Original Message-
> > Sent: Thursday, July 03, 2003 7:21 PM
> > To: Multiple recipients of list ORACLE-L
> >
> >
> > Unless you've run into errors requiring adjustment of these parameters,
> > don't bother with them.
> >
> > I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.
> >
> > Modifying them requires rebuilding the kernel, which can be quite a
> > hassle.
> >
> > It also invalidates Oracle support on linux.
> >
> > Jared
> >
> >
> >
> >
> >
> > John Dunn <[EMAIL PROTECTED]>
> > Sent by: [EMAIL PROTECTED]
> >  07/03/2003 01:54 AM
> >  Please respond to ORACLE-L
> >
> >
> > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> > cc:
> > Subject:Oracle 9 on redhat 9...kernal settings
> >
> >
> > I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.
> >
> > What should I set the Kernal parameters to. shmmax, shmmni, shmall,
> > sem
> > 
> >
> > JD
> 
> 

-- 



  .-... . -.-. .-. . --- . ... ... .- --. .

Craig I. Hagan
   hagan(at)cih.com

   "Never let your sense of morals prevent you from doing what is right."
- Mayor Hardin from Isaac Asimov's Foundation

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Craig I. Hagan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Jack van Zanen


http://codah.net/install-oracle9iR2-on-redhat9.html



-Original Message-
Sent: Friday, July 04, 2003 7:39 PM
To: Multiple recipients of list ORACLE-L



Nice.  I haven't even looked at setting these parms in linux
in a couple years, didn't know this was available.

So, how do you set SHMMAX, etc on linux using sysctl?

The man pages weren't much help.

Jared

On Friday 04 July 2003 03:24, Markus Reger wrote:
> standard kernel : no rebuild.
> just use sysctl -p
> after writing yr preeferred settings into /etc/sysctl.conf
>
> for advanced linux guys: they can be set directly - but the previous 
> way is more convinient.
>
> in case you don't set them yr installation might hnag when creating 
> the database instance. in this case just install the database later. 
> means start dbassiost fter setting the kernel params. doesn't need a 
> complete re-install.
>
> kr
>
> >>> [EMAIL PROTECTED] 07/04/03 10:34 AM >>>
>
> Hi Jared,
>
>
> I ventured into my first red hat install not to long ago, but these 
> parameters do do need a kernel rebuild (afaik)
>
>
> Jack
>
>
> -Original Message-
> Sent: Thursday, July 03, 2003 7:21 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Unless you've run into errors requiring adjustment of these 
> parameters, don't bother with them.
>
> I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching 
> these.
>
> Modifying them requires rebuilding the kernel, which can be quite a 
> hassle.
>
> It also invalidates Oracle support on linux.
>
> Jared
>
>
>
>
>
> John Dunn <[EMAIL PROTECTED]>
> Sent by: [EMAIL PROTECTED]
>  07/03/2003 01:54 AM
>  Please respond to ORACLE-L
>
>
> To: Multiple recipients of list ORACLE-L
<[EMAIL PROTECTED]>
> cc:
> Subject:Oracle 9 on redhat 9...kernal settings
>
>
> I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.
>
> What should I set the Kernal parameters to. shmmax, shmmni, 
> shmall, sem 
>
> JD

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jack van Zanen
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Jack van Zanen
Hi  Jared,



The link I send earlier this thread explains in detail how to set this


Happy Holidays

Jacob A. van Zanen




-Original Message-
Sent: Friday, July 04, 2003 7:39 PM
To: Multiple recipients of list ORACLE-L



Nice.  I haven't even looked at setting these parms in linux
in a couple years, didn't know this was available.

So, how do you set SHMMAX, etc on linux using sysctl?

The man pages weren't much help.

Jared

On Friday 04 July 2003 03:24, Markus Reger wrote:
> standard kernel : no rebuild.
> just use sysctl -p
> after writing yr preeferred settings into /etc/sysctl.conf
>
> for advanced linux guys: they can be set directly - but the previous 
> way is more convinient.
>
> in case you don't set them yr installation might hnag when creating 
> the database instance. in this case just install the database later. 
> means start dbassiost fter setting the kernel params. doesn't need a 
> complete re-install.
>
> kr
>
> >>> [EMAIL PROTECTED] 07/04/03 10:34 AM >>>
>
> Hi Jared,
>
>
> I ventured into my first red hat install not to long ago, but these 
> parameters do do need a kernel rebuild (afaik)
>
>
> Jack
>
>
> -Original Message-
> Sent: Thursday, July 03, 2003 7:21 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Unless you've run into errors requiring adjustment of these 
> parameters, don't bother with them.
>
> I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching 
> these.
>
> Modifying them requires rebuilding the kernel, which can be quite a 
> hassle.
>
> It also invalidates Oracle support on linux.
>
> Jared
>
>
>
>
>
> John Dunn <[EMAIL PROTECTED]>
> Sent by: [EMAIL PROTECTED]
>  07/03/2003 01:54 AM
>  Please respond to ORACLE-L
>
>
> To: Multiple recipients of list ORACLE-L
<[EMAIL PROTECTED]>
> cc:
> Subject:Oracle 9 on redhat 9...kernal settings
>
>
> I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.
>
> What should I set the Kernal parameters to. shmmax, shmmni, 
> shmall, sem 
>
> JD

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jack van Zanen
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Mladen Gogala
The macho way is: echo 1073741824 > /proc/sys/kernel/shmmax.
If you put the line
kernel.shmmax = 1073741824 in your /etc/sysctl.conf, RH Linux will do
that for you during the next startup. When you do that, you should remember
two things:
a) Don't panic!
b) Always have your documentation CD and a towel with you.
Now, it's the time for me to hit the beach (Golf Beach, Milford CT if somebody
is interested.) Happy 4th of July to everybody!
On 2003.07.04 13:39, Jared Still wrote:
Nice.  I haven't even looked at setting these parms in linux
in a couple years, didn't know this was available.
So, how do you set SHMMAX, etc on linux using sysctl?

The man pages weren't much help.

Jared

On Friday 04 July 2003 03:24, Markus Reger wrote:
> standard kernel : no rebuild.
> just use sysctl -p
> after writing yr preeferred settings into /etc/sysctl.conf
>
> for advanced linux guys: they can be set directly - but the previous way is
> more convinient.
>
> in case you don't set them yr installation might hnag when creating the
> database instance. in this case just install the database later. means
> start dbassiost fter setting the kernel params. doesn't need a complete
> re-install.
>
> kr
>
> >>> [EMAIL PROTECTED] 07/04/03 10:34 AM >>>
>
> Hi Jared,
>
>
> I ventured into my first red hat install not to long ago, but these
> parameters do do need a kernel rebuild (afaik)
>
>
> Jack
>
>
> -Original Message-
> Sent: Thursday, July 03, 2003 7:21 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Unless you've run into errors requiring adjustment of these parameters,
> don't bother with them.
>
> I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.
>
> Modifying them requires rebuilding the kernel, which can be quite a
> hassle.
>
> It also invalidates Oracle support on linux.
>
> Jared
>
>
>
>
>
> John Dunn <[EMAIL PROTECTED]>
> Sent by: [EMAIL PROTECTED]
>  07/03/2003 01:54 AM
>  Please respond to ORACLE-L
>
>
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]
com>
> cc:
> Subject:Oracle 9 on redhat 9...kernal settings
>
>
> I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.
>
> What should I set the Kernal parameters to. shmmax, shmmni, shmall,
> sem
> 
>
> JD
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Jared Still
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Mladen Gogala
Oracle DBA
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Jared Still

Nice.  I haven't even looked at setting these parms in linux
in a couple years, didn't know this was available.

So, how do you set SHMMAX, etc on linux using sysctl?

The man pages weren't much help.

Jared

On Friday 04 July 2003 03:24, Markus Reger wrote:
> standard kernel : no rebuild.
> just use sysctl -p
> after writing yr preeferred settings into /etc/sysctl.conf
>
> for advanced linux guys: they can be set directly - but the previous way is
> more convinient.
>
> in case you don't set them yr installation might hnag when creating the
> database instance. in this case just install the database later. means
> start dbassiost fter setting the kernel params. doesn't need a complete
> re-install.
>
> kr
>
> >>> [EMAIL PROTECTED] 07/04/03 10:34 AM >>>
>
> Hi Jared,
>
>
> I ventured into my first red hat install not to long ago, but these
> parameters do do need a kernel rebuild (afaik)
>
>
> Jack
>
>
> -Original Message-
> Sent: Thursday, July 03, 2003 7:21 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Unless you've run into errors requiring adjustment of these parameters,
> don't bother with them.
>
> I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.
>
> Modifying them requires rebuilding the kernel, which can be quite a
> hassle.
>
> It also invalidates Oracle support on linux.
>
> Jared
>
>
>
>
>
> John Dunn <[EMAIL PROTECTED]>
> Sent by: [EMAIL PROTECTED]
>  07/03/2003 01:54 AM
>  Please respond to ORACLE-L
>
>
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> cc:
> Subject:Oracle 9 on redhat 9...kernal settings
>
>
> I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.
>
> What should I set the Kernal parameters to. shmmax, shmmni, shmall,
> sem
> 
>
> JD

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Markus Reger
standard kernel : no rebuild. 
just use sysctl -p
after writing yr preeferred settings into /etc/sysctl.conf

for advanced linux guys: they can be set directly - but the previous way is more 
convinient. 

in case you don't set them yr installation might hnag when creating the database 
instance. in this case just install the database later. means start dbassiost fter 
setting the kernel params. doesn't need a complete re-install.

kr 



>>> [EMAIL PROTECTED] 07/04/03 10:34 AM >>>
Hi Jared,


I ventured into my first red hat install not to long ago, but these
parameters do do need a kernel rebuild (afaik)


Jack


-Original Message-
Sent: Thursday, July 03, 2003 7:21 PM
To: Multiple recipients of list ORACLE-L


Unless you've run into errors requiring adjustment of these parameters,
don't bother with them.

I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.

Modifying them requires rebuilding the kernel, which can be quite a 
hassle.

It also invalidates Oracle support on linux.

Jared





John Dunn <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
 07/03/2003 01:54 AM
 Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc: 
Subject:Oracle 9 on redhat 9...kernal settings


I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.

What should I set the Kernal parameters to. shmmax, shmmni, shmall, 
sem


JD
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: John Dunn
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jack van Zanen
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Markus Reger
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Jared Still

Must have changed when I wasn't looking.

On Friday 04 July 2003 01:34, Jack van Zanen wrote:
> Hi Jared,
>
>
> I ventured into my first red hat install not to long ago, but these
> parameters do do need a kernel rebuild (afaik)
>
>
> Jack
>
>
> -Original Message-
> Sent: Thursday, July 03, 2003 7:21 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Unless you've run into errors requiring adjustment of these parameters,
> don't bother with them.
>
> I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.
>
> Modifying them requires rebuilding the kernel, which can be quite a
> hassle.
>
> It also invalidates Oracle support on linux.
>
> Jared
>
>
>
>
>
> John Dunn <[EMAIL PROTECTED]>
> Sent by: [EMAIL PROTECTED]
>  07/03/2003 01:54 AM
>  Please respond to ORACLE-L
>
>
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> cc:
> Subject:Oracle 9 on redhat 9...kernal settings
>
>
> I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.
>
> What should I set the Kernal parameters to. shmmax, shmmni, shmall,
> sem
> 
>
> JD

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle 9 on redhat 9...kernal settings

2003-07-04 Thread Jack van Zanen
Hi Jared,


I ventured into my first red hat install not to long ago, but these
parameters do do need a kernel rebuild (afaik)


Jack


-Original Message-
Sent: Thursday, July 03, 2003 7:21 PM
To: Multiple recipients of list ORACLE-L


Unless you've run into errors requiring adjustment of these parameters,
don't bother with them.

I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.

Modifying them requires rebuilding the kernel, which can be quite a 
hassle.

It also invalidates Oracle support on linux.

Jared





John Dunn <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
 07/03/2003 01:54 AM
 Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc: 
Subject:Oracle 9 on redhat 9...kernal settings


I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.

What should I set the Kernal parameters to. shmmax, shmmni, shmall, 
sem


JD
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: John Dunn
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jack van Zanen
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Oracle 9 on redhat 9...kernal settings

2003-07-03 Thread Jared . Still
Unless you've run into errors requiring adjustment of these parameters,
don't bother with them.

I've run 4 databases on a 2Gig RAM RH 7.1 box without ever touching these.

Modifying them requires rebuilding the kernel, which can be quite a 
hassle.

It also invalidates Oracle support on linux.

Jared





John Dunn <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
 07/03/2003 01:54 AM
 Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc: 
Subject:Oracle 9 on redhat 9...kernal settings


I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.

What should I set the Kernal parameters to. shmmax, shmmni, shmall, 
sem


JD
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: John Dunn
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle 9 on redhat 9...kernal settings

2003-07-03 Thread Jack van Zanen
Follow this link and it will work (did for me and a friend of mine and we
have 512Mb memory also)

http://codah.net/install-oracle9iR2-on-redhat9.html

Jack



-Original Message-
Sent: Thursday, July 03, 2003 10:54 AM
To: Multiple recipients of list ORACLE-L


I have 512 MB RAM in my Redhat Linux intel machine running Oracle 9.

What should I set the Kernal parameters to. shmmax, shmmni, shmall, sem


JD
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: John Dunn
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jack van Zanen
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).