From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Denis Lapshin <deniza956(at)gmail(dot)com> |
Cc: | pgsql-docs(at)postgresql(dot)org |
Subject: | Re: Wrong startup script of PostgreSQL 9.1.2 under OpenBSD 5.1 |
Date: | 2012-09-25 17:02:45 |
Message-ID: | 22923.1348592565@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-docs |
Denis Lapshin <deniza956(at)gmail(dot)com> writes:
> On page http://www.postgresql.org/docs/9.1/interactive/server-start.html
> was published a wrong startup script for automatic starting PostgeSQL
> during boot under OpenBSD.
> Here is a working one which should be placed into /etc/rc.local file:
> if [ -x /usr/local/bin/pg_ctl -a -x /usr/local/bin/postgres ]; then
> su - _postgresql -c '/usr/local/bin/pg_ctl -D /var/postgresql/data
> start -l /var/postgresql/logfile -s'
> echo -n 'postgresql'
> fi
Right offhand it's not apparent to me that either of these can be said
to be "right" or "wrong". You are making different assumptions about
the installation directory and user name than what is in the
documentation, but your assumptions aren't more right than the docs'.
As stated there, the examples use generic choices that may need to be
adjusted for particular systems.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Hidvégi Gábor | 2012-09-25 17:07:34 | Re: Wrong startup script of PostgreSQL 9.1.2 under OpenBSD 5.1 |
Previous Message | Denis Lapshin | 2012-09-25 06:37:35 | Wrong startup script of PostgreSQL 9.1.2 under OpenBSD 5.1 |