Operating System - Linux
1827881 Members
1477 Online
109969 Solutions
New Discussion

Redhat 4 kernel parameters

 
SOLVED
Go to solution
Robert-Jan Goossens_1
Honored Contributor

Redhat 4 kernel parameters

Hi All,

Need to add some kernel parameters on Redhat 4 AS system for oracle.

shmsys:shminfo_shmmax 61847529062
semsys:seminfo_semmap 1024
semsys:seminfo_semmni 2048
semsys:seminfo_semmns 2048
semsys:seminfo_semmsl 2048
semsys:seminfo_semmnu 2048
semsys:seminfo_semume 200
shmsys:shminfo_shmmin 200
shmsys:shminfo_shmmni 200
shmsys:shminfo_shmseg 256
rlim_fd_max 16384
rlim_fd_cur 16384
udp:xmit_hiwat 262144
udp:udp_recv_hiwat 262144

The oracle install guide confused me, can I add the parameters to the /etc/sysctl.conf or should I add them to /proc/sys/kernel/sem , /proc/sys/kernel/shmmax, /proc/sys/kernel/shmmni?

Best regards,
Robert-Jan
4 REPLIES 4
Steven E. Protter
Exalted Contributor
Solution

Re: Redhat 4 kernel parameters

Shalom Robert-Jan

/etc/sysctl.conf

Thats the place to make permanent changes.

Writing them to /proc/sys/ permits erasure on the next reboot.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Robert-Jan Goossens_1
Honored Contributor

Re: Redhat 4 kernel parameters

Shalom Steven,

Thanks for your quick responce!!!

Btw I think the first paragraph of the Install guide should be removed! :-)

Best regards,
Robert-Jan
Ivan Ferreira
Honored Contributor

Re: Redhat 4 kernel parameters

After you modify sysctl.conf, you can run sysctl -p to apply the changes without reboot.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Robert-Jan Goossens_1
Honored Contributor

Re: Redhat 4 kernel parameters

Solved! Thanks Steven