2001-02-08 22:53:33 +03:00
|
|
|
#! /bin/sh
|
|
|
|
|
2001-07-30 18:52:42 +04:00
|
|
|
# chkconfig: 2345 98 02
|
|
|
|
# description: PostgreSQL RDBMS
|
|
|
|
|
2001-02-08 22:53:33 +03:00
|
|
|
# This is an example of a start/stop script for SysV-style init, such
|
|
|
|
# as is used on Linux systems. You should edit some of the variables
|
|
|
|
# and maybe the 'echo' commands.
|
|
|
|
#
|
|
|
|
# Place this file at /etc/init.d/postgresql (or
|
|
|
|
# /etc/rc.d/init.d/postgresql) and make symlinks to
|
|
|
|
# /etc/rc.d/rc0.d/K02postgresql
|
|
|
|
# /etc/rc.d/rc1.d/K02postgresql
|
|
|
|
# /etc/rc.d/rc2.d/K02postgresql
|
|
|
|
# /etc/rc.d/rc3.d/S98postgresql
|
|
|
|
# /etc/rc.d/rc4.d/S98postgresql
|
|
|
|
# /etc/rc.d/rc5.d/S98postgresql
|
2001-07-30 18:52:42 +04:00
|
|
|
# Or, if you have chkconfig, simply:
|
|
|
|
# chkconfig --add postgresql
|
2001-02-08 22:53:33 +03:00
|
|
|
#
|
|
|
|
# Proper init scripts on Linux systems normally require setting lock
|
|
|
|
# and pid files under /var/run as well as reacting to network
|
|
|
|
# settings, so you should treat this with care.
|
|
|
|
|
|
|
|
# Original author: Ryan Kirkpatrick <pgsql@rkirkpat.net>
|
|
|
|
|
2004-10-01 22:30:25 +04:00
|
|
|
# $PostgreSQL: pgsql/contrib/start-scripts/linux,v 1.7 2004/10/01 18:30:21 tgl Exp $
|
2001-02-08 22:53:33 +03:00
|
|
|
|
|
|
|
## EDIT FROM HERE
|
|
|
|
|
|
|
|
# Installation prefix
|
|
|
|
prefix=/usr/local/pgsql
|
|
|
|
|
|
|
|
# Data directory
|
|
|
|
PGDATA="/usr/local/pgsql/data"
|
|
|
|
|
2004-10-01 22:30:25 +04:00
|
|
|
# Who to run the postmaster as, usually "postgres". (NOT "root")
|
2001-02-08 22:53:33 +03:00
|
|
|
PGUSER=postgres
|
|
|
|
|
|
|
|
# Where to keep a log file
|
|
|
|
PGLOG="$PGDATA/serverlog"
|
|
|
|
|
|
|
|
## STOP EDITING HERE
|
|
|
|
|
|
|
|
# Check for echo -n vs echo \c
|
|
|
|
if echo '\c' | grep -s c >/dev/null 2>&1 ; then
|
|
|
|
ECHO_N="echo -n"
|
|
|
|
ECHO_C=""
|
|
|
|
else
|
|
|
|
ECHO_N="echo"
|
|
|
|
ECHO_C='\c'
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The path that is to be used for the script
|
|
|
|
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
|
|
|
|
|
2004-10-01 22:30:25 +04:00
|
|
|
# What to use to start up the postmaster (we do NOT use pg_ctl for this,
|
|
|
|
# as it adds no value and can cause the postmaster to misrecognize a stale
|
|
|
|
# lock file)
|
|
|
|
DAEMON="$prefix/bin/postmaster"
|
|
|
|
|
|
|
|
# What to use to shut down the postmaster
|
|
|
|
PGCTL="$prefix/bin/pg_ctl"
|
2001-02-08 22:53:33 +03:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2004-10-01 22:30:25 +04:00
|
|
|
# Only start if we can find the postmaster.
|
|
|
|
test -x $DAEMON || exit 0
|
2001-02-08 22:53:33 +03:00
|
|
|
|
|
|
|
# Parse command line parameters.
|
|
|
|
case $1 in
|
|
|
|
start)
|
|
|
|
$ECHO_N "Starting PostgreSQL: "$ECHO_C
|
2004-10-01 22:30:25 +04:00
|
|
|
su - $PGUSER -c "$DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
|
2001-02-08 22:53:33 +03:00
|
|
|
echo "ok"
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
echo -n "Stopping PostgreSQL: "
|
2004-10-01 22:30:25 +04:00
|
|
|
su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast"
|
2001-02-08 22:53:33 +03:00
|
|
|
echo "ok"
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
echo -n "Restarting PostgreSQL: "
|
2004-10-01 22:30:25 +04:00
|
|
|
su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast -w"
|
|
|
|
su - $PGUSER -c "$DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
|
2001-02-08 22:53:33 +03:00
|
|
|
echo "ok"
|
|
|
|
;;
|
2003-06-12 06:02:24 +04:00
|
|
|
reload)
|
|
|
|
echo -n "Reload PostgreSQL: "
|
2004-10-01 22:30:25 +04:00
|
|
|
su - $PGUSER -c "$PGCTL reload -D '$PGDATA' -s"
|
2003-06-12 06:02:24 +04:00
|
|
|
echo "ok"
|
2003-07-27 00:42:55 +04:00
|
|
|
;;
|
2001-02-08 22:53:33 +03:00
|
|
|
status)
|
2004-10-01 22:30:25 +04:00
|
|
|
su - $PGUSER -c "$PGCTL status -D '$PGDATA'"
|
2001-02-08 22:53:33 +03:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Print help
|
2003-06-12 06:02:24 +04:00
|
|
|
echo "Usage: $0 {start|stop|restart|reload|status}" 1>&2
|
2001-02-08 22:53:33 +03:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|