Where do I get information on how to configure my /etc/sysctl.conf? I am installing IBM DB2 and as a part of the procedure, I have to edit that file "set maximum message queues to 128" (I don't know what that means, but I am sure it's got nothing to do with email messages).
Here's what I have to add to the file --
# Sets maximum number of message queues to 128 # Set this to 1024 or higher on production systems kernel.msgmni = 128
What does that parameter mean? There's no manpage for the conf file.
Manish
On Tue, 26 Jun 2001, Manish Jethani wrote:
Where do I get information on how to configure my /etc/sysctl.conf? I am installing IBM DB2 and as a part of the procedure, I have to edit that file "set maximum message queues to 128" (I don't know
sysctl controls settings in /proc/sys
all names in sysctl.conf refer to directories in /proc/sys. dots are replaced with /
Here's what I have to add to the file --
# Sets maximum number of message queues to 128 # Set this to 1024 or higher on production systems kernel.msgmni = 128
so basically this means:
% echo 128 > /proc/sys/kernel/msgmni
or, put it as is in sysctl.conf and let sysctl do the rest. man sysctl. There's also supposed to be a sysctl.conf man page, which is never installed. Does anyone have a distro on which this man page is installed?
Philip
never installed. Does anyone have a distro on which this man page is installed?
A *very* (minimal) man page is installed in Debian 2.2
Pablo. ---------------------------------------------------------------------- Pablo Ares Gastesi. School of Mathematics, TIFR, Mumbai 400 005, INDIA pablo@math.tifr.res.in http://www.math.tifr.res.in/~pablo/ Key fingerprint = 1A 7C 0A 22 5A 75 A4 78 62 6F 64 09 C1 A0 F7 E6 ----------------------------------------------------------------------
On Tuesday 26 June 2001 16:10, Philip wrote:
There's also supposed to be a sysctl.conf man page, which is never installed. Does anyone have a distro on which this man page is installed?
Philip
Debian potato. sysctl and sysctl.conf.