Operating System - Tru64 Unix
1753576 Members
6398 Online
108796 Solutions
New Discussion юеВ

how to increase number of que

 
jaycabs
New Member

how to increase number of que

Hi,

Would like to asked some help. How can we increase the number of messages in queue into 4MB. Currently the default value of msgmax is 8192 and msgmnd is 16384. and this parameter is only for 16KB.Is it possible to extend up to 4MB.

IPC status from /dev/kmem as of Mon May 30 07:24:34 2005

T ID KEY MODE OWNER GROUP CBYTES QNUM

Message Queues:

q 0 0x3c1802ac -Rrw--w--w- root root 0 0

q 1 0x3e1802ac --rw-r--r-- root root 0 0

q 72002 0x01208342 --rw-rw-rw- root dev 32760 3276



2 REPLIES 2
Venkatesh BL
Honored Contributor

Re: how to increase number of que

man sys_attrs_ipc for info on msg_max. You can use dxkerneltuner to change the value.
Roger Mansard
Advisor

Re: how to increase number of que

Try #sysconfig -q ipc and look for the current values.
- Do #sysconfig -Q ipc to see the min/max for parms.
- The CRQ means (C) Configurable (R) Can be changed on the fly (Q) Can be queried
- To make the parm changes for temp changes use, sysconfig -r ipc =
- In this case, neither msg_max nor msg_mnb are changeable on the fly (i.e. no CRQ for them). You'll need to setup a stanza in the /etc/sysconfigtab for ipc if it doesn't already exist, and put the parms with thier new values in it. The system will need to be rebooted for the new values to take effect. Don't mess up the sysconfigtab, the system won't boot without it.

Example:

ipc:
msg_max=2048
msg_mnb=16384

Any parms and values in the sysconfigtab will be persistent across boots.