Re: auto start up at boot time

Поиск
Список
Период
Сортировка
От Doug McNaught
Тема Re: auto start up at boot time
Дата
Msg-id m3advn6psn.fsf@varsoon.denali.to
обсуждение исходный текст
Ответ на auto start up at boot time  (Cindy <ctmoore@uci.edu>)
Ответы Re: auto start up at boot time  (Chris Albertson <chrisalbertson90278@yahoo.com>)
Список pgsql-general
Cindy <ctmoore@uci.edu> writes:

> Hi, all.  I'm trying to figure out how to have postmaster
> automatically restart upon rebooting (on a Sun Solaris system).  I
> added a script to the /etc/rc3.d directory, but turns out it has to
> run under non-root privs.  It referred to the INSTALL file for further
> info, but I couldn't find this file, and all the documentation I
> looked at discussed starting postmaster on the command line.  Any
> suggestions or pointers to where I should look at?

1) You should put the script in /etc/init.d, and make links to it in
   rc3.d and rc0.d (or whatever).  See an existing init script for the
   general idea.

2) The init script should do something like:

  PGDATA=/usr/local/var/lib/pgsql; export PGDATA   # or whatever you're using
  # set any other needed environment variables here
  su postgres -c "/usr/local/pgsql/bin/pg_ctl start"

-Doug
--
Let us cross over the river, and rest under the shade of the trees.
   --T. J. Jackson, 1863

В списке pgsql-general по дате отправления:

Предыдущее
От: Darren Ferguson
Дата:
Сообщение: Re: auto start up at boot time
Следующее
От: Chris Albertson
Дата:
Сообщение: Re: auto start up at boot time