> Hi,
>
> Do you have any documentation about shmmax parameter?
> I have a server with 2 Gb of Ram, 2 processors and it is slow.
> I need to correct it.I need to find out what is happening.
> I think it is this parameter.

I have no docs but I've put this into my init scripts:

  SHMMAX=$(/sbin/sysctl -n kernel.shmmax)
  if [ $SHMMAX -lt 104857600 ]; then
    /sbin/sysctl -w kernel.shmmax=104857600 > /dev/null 2>&1
  fi

Regards,
Simon

--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to