2012/10/7 Scott Marlowe <scott.marlowe@xxxxxxxxx>
http://www.postgresql.org/docs/9.2/static/kernel-resources.html
OK, fine thanks to both.
I've found a page dealing with that prob :
The points are to :
Easy to fix; run:
sudo sysctl -w kern.sysv.shmall=65536
sudo sysctl -w kern.sysv.shmmax=16777216
(The first one's the critical one for me, but second seems appropriate too.)
This changes the limits in the currently-running kernel. To make these values stick across reboots, add them to /etc/sysctl.conf, like this:
kern.sysv.shmall=65536
kern.sysv.shmmax=16777216
(Create this file if it doesn't already exist – it doesn't on fresh Leopard installs.)Yvon