Am Dienstag, 8. August 2006 13:27 schrieb mcelroy, tim: > Good morning, > > Curious if anyone out there has a start-up script for Solaris? A > version of the Linux /etc/init.d/postgresql one. I recently installed > postgres on a Solaris 9 box and although I can start up postgres it > fails to log to the log file as directed and just "doesn't look right", > like it does on Linux. > I have a rather old one, which originally started and stopped a 6.5.2 postgres on Solaris 5.6 . Now it does its job on 7.4 and Solaris 10. Thomas Mack ===================================================================== #!/bin/sh killproc() { # kill the named process(es) pid=`/usr/bin/ps -e -o pid,args | \ /usr/bin/grep "$1\>" | \ /usr/bin/grep -v "$0\>" | \ /usr/bin/grep -v grep | \ /usr/bin/awk '{print $1}'` [ "$pid" != "" ] && kill -s INT $pid [ "$pid" != "" ] && sleep 2 [ "$pid" != "" ] && kill -s QUIT $pid } # # Start/stop postgres # case "$1" in 'start') echo "Starting postgres74..." killproc postmaster /usr/bin/rm -f /usr/local/pgsql/data/postmaster.pid su - postgres -c "source /usr/local/pgsql/.tcshrc; limit descriptors 512; cd /usr/local/pgsql/bin; ./postmaster -i -p 6007 -o -e >>& server.log&" ;; 'stop') killproc postmaster # kill postmaster process /usr/bin/rm -f /tmp/.s.PGSQL.6007 ;; 'restart') $0 stop sleep 1 $0 start ;; *) echo "Usage: /etc/init.d/postgres74 { start | stop | restart }" ;; esac