Re: PG versus FreeBSD, startup and connections problems

From: Mark Kirkwood <markir(at)coretech(dot)co(dot)nz>
To: Mitch Pirtle <mitch(dot)pirtle(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: PG versus FreeBSD, startup and connections problems
Date: 2005-01-25 21:08:58
Message-ID: 41F6B56A.9010103@coretech.co.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Mitch Pirtle wrote:

>1) freebsd will only let PostgreSQL have 38 connections at a time,
>regardless of kernel settings or postgresql.conf settings. Where
>exactly (and how, exactly) does one remedy that problem?
>
>
>
What version of FreeBSD is the box running?
Generally you need to change semaphores and shared memory settings, e.g.
for 5.x or late 4.x :

in /etc/sysctl.conf :
kern.ipc.shmmax=100000000
kern.ipc.shmall=32768
(can be set online using systcl -w)

Semaphores need to be set in /boot/loader.conf
kern.ipc.semmni=256
kern.ipc.semmns=256
(can typed at the loader prompt using set)

These settings should let you have ~100 connections and use about 100M
of shared memory for shared_buffers.

Early 4.x (I think) and before will need a kernel rebuild, see
http://www.postgresql.org/docs/7.4/static/kernel-resources.html#SYSVIPC

>2) As of this morning, the machine was down again, this time apache
>fired up normally but pg refuses to start - without errors. When I
>start with postmaster on the CLI I also get no errors, just no
>postmaster. Why am I not seeing the errors, is this a FreeBSD or
>PostgreSQL issue?
>
>For example:
>
>$ pg_ctl start
>postmaster successfully started
>$ pg_ctl status
>pg_ctl: postmaster or postgres not running
>
>OR:
>
>$ postmaster -D /usr/local/pgsql/data
>$
>(no response)
>
>
>
BTW - What version of Pg are you using?
Check your postgresql.conf to see if all the output is going to syslog, e.g,
syslog=2
If not, then unfortunately it is possible that whatever is causing the
machine to be unstable has corrupted the data directory (so ...err...
restore time). Starting the postmaster in debug mode will provide more
output:
$ postmaster -d 5
Additionally utilitites like 'strace' will give you a bit more info
about where the startup process gets to.

Do you know why the box went down? The freebsd-bugs or freebsd-stable
list will help with respect to Freebsd crashing, see
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL

regards

Mark

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Christopher Browne 2005-01-25 21:46:48 Re: PostgreSQL vs. Oracle vs. Microsoft
Previous Message Litao Wu 2005-01-25 18:48:08 Re: reltuples after vacuum and analyze