Re: [GENERAL] postgres startup method for ubuntu

2008-01-31 Thread T.J. Adami
On 30 jan, 04:14, Jon Hancock <[EMAIL PROTECTED]> wrote: > I have compiled postgres 8.3rc2 on ubuntu 7.04 and seem to a have > working install. > To start postgres, I do the following: > > > su postgres > > /usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data & > > ok, that works for dev mode. B

Re: [GENERAL] postgres startup method for ubuntu

2008-01-31 Thread Karsten Hilbert
On Thu, Jan 31, 2008 at 02:35:01AM -0800, T.J. Adami wrote: > Everytime I deploy a PostgreSQL server in a ubuntu or debian based > server, I create some scripts called pg_start, pg_stop and pg_reload, > save them on default postgresql home dir. Then I create symbolic links > on /usr/bin, and so on

Re: [GENERAL] postgres startup method for ubuntu

2008-01-31 Thread Daniel Verite
T.J. Adami wrote: I am also searching for a more 'professional' way to startup and shutdown postgresql on ubuntu and debian systems. The source comes with a startup script that can be installed by running: # cp contrib/start-scripts/linux /etc/init.d/postgresql # update-rc.d postgres

Re: [GENERAL] postgres startup method for ubuntu

2008-01-31 Thread T.J. Adami
On 31 jan, 12:24, [EMAIL PROTECTED] ("Daniel Verite") wrote: > T.J. Adami wrote: > > > I am also searching for a more 'professional' way to startup and > > shutdown postgresql on ubuntu and debian systems. > > The source comes with a startup script that can be installed by > running: > # cp

Re: [GENERAL] postgres startup method for ubuntu

2008-01-31 Thread Daniel Verite
T.J. Adami wrote: > The source comes with a startup script that can be installed by > running: > # cp contrib/start-scripts/linux /etc/init.d/postgresql > # update-rc.d postgresql defaults > (update-rc.d is to debian-based systems what chkconfig is to > Redhat-based systems). > > -- > D