1834150 Members
1980 Online
110064 Solutions
New Discussion

Re: Kernel Parameters

 
SOLVED
Go to solution

Kernel Parameters

Hello, experts

I am trying to find out the values for certain kernel parameters for our DBAs and
I cannot find some of them .

kmtune or sam does not show the following:

SHMMHI
SEMMSL

Could you point me to the right place where I can find these values.

Thanks in advance.

Dimitry.
6 REPLIES 6
Tom Geudens
Honored Contributor

Re: Kernel Parameters

Hi,
I always use
http://h21007.www2.hp.com/dspp/files/unprotected/devresource/Docs/TechPapers/UXPerfCookBook.pdf
as a starting point ...

Hope it helps,
Tom
A life ? Cool ! Where can I download one of those from ?
Sanjay_6
Honored Contributor

Re: Kernel Parameters

Hi Dimitry,

There are no such kernel (SHMMHI SEMMSL) parameters in 11.0 . Which version of hp-ux are you talking about. Are you sure about these kernel parameters.

http://docs.hp.com//hpux/onlinedocs/os/KCparams.OverviewAll.html

Hope this helps.

Regds
Steve Steel
Honored Contributor

Re: Kernel Parameters

Hi

kmtune like this should work

kmtune -l -q semmsl
Parameter: semmsl
Current: -
Planned: 2048
Default: 2048
Minimum: -
Module: -
Version: -
Dynamic: No

kmtune -l -q shmmni
Parameter: shmmni
Current: -
Planned: 200
Default: 200
Minimum: -
Module: -
Version: -
Dynamic: No

Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)

Re: Kernel Parameters

This came from Oracle Database
Benchmark With HP PRM Memory Management white paper from 10.27.2000


kmtune -l -q semmsl
does not work


we are running 11.0


Thanks
Giri Sekar.
Trusted Contributor
Solution

Re: Kernel Parameters

Hi:

Those are the kernel tunables for semaphores. However they cannot be tuned. Also kmtune will not report that nor SAM. To look into the values go to this file ..

/usr/conf/space.h.d/core-hpux.h

also
/usr/include/sys/sem.h

Thanks
Giri Sekar.
"USL" Unix as Second Language
S.K. Chan
Honored Contributor

Re: Kernel Parameters

Prior to 11i, "semmsl" is a kernel hardcoded value. Check it in /usr/include/sys/sem.h like so ..
# grep SEMMSL /usr/include/sys/sem.h
If you're on 11i, you should be able to see it in SAM and it's dynamic.

The other kernel SHMMHI I never hear of.