Re: [SQL] Solaris Startup

From: Roberto Joao Lopes Garcia <roberto(at)mha(dot)com(dot)br>
To: "Frank Morton" <fmorton(at)base2inc(dot)com>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Solaris Startup
Date: 1999-01-14 15:11:14
Message-ID: 3.0.5.32.19990114131114.008ce870@pop.hipernet.com.br
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces pgsql-sql

At 14:48 13/01/99 -0500, you wrote:
>Does anyone have a solaris init.d startup script handy? I can't find one.
>
>
Hi I start Postmaster in my solaris 2.5 from the /etc/rc2.d at boot time. I
just put the file bellow inside this directory.

I hope it help

Roberto

#!/bin/sh
#
# S81postgres.scr

if [ ! -d /usr/bin ]
then # /usr not
mounted
exit
fi

killproc() { # kill the named process(es)

pid=`/usr/bin/ps -e |
/usr/bin/grep $1 |
/usr/bin/sed -e 's/^
*//' -e 's/ .*//'`
[ "$pid" != "" ] && kill $pid
}

#
# Start/stop
postmaster
#

case "$1" in
'start')
if [ -x
/usr/local/pgsql/bin/postmaster ]
then
echo Iniciando PostgreSQL ...

su postgres -c "/usr/local/pgsql/bin/postmaster -i -S -D
/usr/local/pgsql/data > /export/home/usr/postgres/server.log 2>&1 " >
/dev/console 2>&1
fi

;;

'stop')

killproc postgres

;;
*)
echo
"Usage: /etc/rc2.d/S82postgres.scr { start | stop }"
;;
esac

------------------------------------------------------------------
Eng. Roberto João Lopes Garcia E-mail: roberto(at)mha(dot)com(dot)br
F. 55 11 848 9906 FAX 55 11 848 9955

MHA Engenharia Ltda
E-mail: mha(at)mha(dot)com(dot)br WWW: http://www.mha.com.br

Av Maria Coelho Aguiar, 215 Bloco D 2 Andar
Centro Empresarial de Sao Paulo
Sao Paulo - BRASIL - 05805 000
-------------------------------------------------------------------

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Jackson, DeJuan 1999-01-14 15:51:49 RE: [INTERFACES] {OT} interface to MSsql server
Previous Message Stefan Kapfhammer 1999-01-14 15:03:03

Browse pgsql-sql by date

  From Date Subject
Next Message Frank Barknecht 1999-01-14 15:28:48 Re: [SQL] Text type
Previous Message Stefan Kapfhammer 1999-01-14 15:04:44