1753844 Members
7352 Online
108806 Solutions
New Discussion юеВ

Re: semaphores question

 
Filosofo
Regular Advisor

semaphores question

Hi all,
I have a question about semaphores....My kernel parameters for semaphores are:

semmni 20992
semmns 31488
semmnu 10492
semmsl 2048
semume 10496

I suppose to exceed a max value, for example, of kernel parameter semume, I can see an error meesages in to syslog.log ?

Regards
Sistem engeneer expert
3 REPLIES 3
Steven E. Protter
Exalted Contributor

Re: semaphores question

Shalom Filo,

Probably no message to the logfile.

You may see a warning when you compile the kernel. It is possible however to create an unbootable kernel.

For most parameters, when you exceed the max value, the OS simply ignores you and uses teh max value.

An example is ORACLE AS 10g, which requires SHMMAX to be equal to physical memory. 11i v1 and below ignores settings more than 25% of memory, which is defined as ram plus swap.

You set the value higher anyway, oracle is happy and the system ignores the setting.

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
RAC_1
Honored Contributor

Re: semaphores question

You can monitor real time usage with ipcs -s

If your OS is 11i, V2, you can define kernel alarm that will get triggered when defined threshold is crossed.
man kcalarm
man kcuasage.
There is no substitute to HARDWORK
A. Clay Stephenson
Acclaimed Contributor

Re: semaphores question

What you will see are application errors (specifically system calls failing and setting errno to some value). To the extent that the application logs these errors (either to a simple file or to syslogd), you will have the diagnostics that you need.
This is why good system admins make themselves intimately familiar with the man 2 pages (the system calls) --- even if they are not programmers.
If it ain't broke, I can fix that.