]> granicus.if.org Git - postgresql/blob - contrib/start-scripts/linux
Remove cvs keywords from all files.
[postgresql] / contrib / start-scripts / linux
1 #! /bin/sh
2
3 # chkconfig: 2345 98 02
4 # description: PostgreSQL RDBMS
5
6 # This is an example of a start/stop script for SysV-style init, such
7 # as is used on Linux systems.  You should edit some of the variables
8 # and maybe the 'echo' commands.
9 #
10 # Place this file at /etc/init.d/postgresql (or
11 # /etc/rc.d/init.d/postgresql) and make symlinks to
12 #   /etc/rc.d/rc0.d/K02postgresql
13 #   /etc/rc.d/rc1.d/K02postgresql
14 #   /etc/rc.d/rc2.d/K02postgresql
15 #   /etc/rc.d/rc3.d/S98postgresql
16 #   /etc/rc.d/rc4.d/S98postgresql
17 #   /etc/rc.d/rc5.d/S98postgresql
18 # Or, if you have chkconfig, simply:
19 # chkconfig --add postgresql
20 #
21 # Proper init scripts on Linux systems normally require setting lock
22 # and pid files under /var/run as well as reacting to network
23 # settings, so you should treat this with care.
24
25 # Original author:  Ryan Kirkpatrick <pgsql@rkirkpat.net>
26
27 # contrib/start-scripts/linux
28
29 ## EDIT FROM HERE
30
31 # Installation prefix
32 prefix=/usr/local/pgsql
33
34 # Data directory
35 PGDATA="/usr/local/pgsql/data"
36
37 # Who to run the postmaster as, usually "postgres".  (NOT "root")
38 PGUSER=postgres
39
40 # Where to keep a log file
41 PGLOG="$PGDATA/serverlog"
42
43 # It's often a good idea to protect the postmaster from being killed by the
44 # OOM killer (which will tend to preferentially kill the postmaster because
45 # of the way it accounts for shared memory).  Setting the OOM_ADJ value to
46 # -17 will disable OOM kill altogether.  If you enable this, you probably want
47 # to compile PostgreSQL with "-DLINUX_OOM_ADJ=0", so that individual backends
48 # can still be killed by the OOM killer.
49 #OOM_ADJ=-17
50
51 ## STOP EDITING HERE
52
53 # The path that is to be used for the script
54 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
55
56 # What to use to start up the postmaster.  (If you want the script to wait
57 # until the server has started, you could use "pg_ctl start -w" here.
58 # But without -w, pg_ctl adds no value.)
59 DAEMON="$prefix/bin/postmaster"
60
61 # What to use to shut down the postmaster
62 PGCTL="$prefix/bin/pg_ctl"
63
64 set -e
65
66 # Only start if we can find the postmaster.
67 test -x $DAEMON ||
68 {
69         echo "$DAEMON not found"
70         if [ "$1" = "stop" ]
71         then exit 0
72         else exit 5
73         fi
74 }
75
76
77 # Parse command line parameters.
78 case $1 in
79   start)
80         echo -n "Starting PostgreSQL: "
81         test x"$OOM_ADJ" != x && echo "$OOM_ADJ" > /proc/self/oom_adj
82         su - $PGUSER -c "$DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
83         echo "ok"
84         ;;
85   stop)
86         echo -n "Stopping PostgreSQL: "
87         su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast"
88         echo "ok"
89         ;;
90   restart)
91         echo -n "Restarting PostgreSQL: "
92         su - $PGUSER -c "$PGCTL stop -D '$PGDATA' -s -m fast -w"
93         test x"$OOM_ADJ" != x && echo "$OOM_ADJ" > /proc/self/oom_adj
94         su - $PGUSER -c "$DAEMON -D '$PGDATA' &" >>$PGLOG 2>&1
95         echo "ok"
96         ;;
97   reload)
98         echo -n "Reload PostgreSQL: "
99         su - $PGUSER -c "$PGCTL reload -D '$PGDATA' -s"
100         echo "ok"
101         ;;
102   status)
103         su - $PGUSER -c "$PGCTL status -D '$PGDATA'"
104         ;;
105   *)
106         # Print help
107         echo "Usage: $0 {start|stop|restart|reload|status}" 1>&2
108         exit 1
109         ;;
110 esac
111
112 exit 0