- MyPLC 0.4 RC2
[myplc.git] / plc.d / postgresql
1 #!/bin/bash
2 #
3 # priority: 300
4 #
5 # Manage the PostgreSQL database server
6 #
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2006 The Trustees of Princeton University
9 #
10 # $Id: postgresql,v 1.5 2006/07/10 21:09:24 mlhuang Exp $
11 #
12
13 # Source function library and configuration
14 . /etc/plc.d/functions
15 . /etc/planetlab/plc_config
16
17 # Be verbose
18 set -x
19
20 # Default locations
21 PGDATA=/var/lib/pgsql/data
22 postgresql_conf=$PGDATA/postgresql.conf
23 pghba_conf=$PGDATA/pg_hba.conf
24
25 # Export so that we do not have to specify -p to psql invocations
26 export PGPORT=$PLC_DB_PORT
27
28 # /etc/init.d/postgresql always returns 0, even on failure
29 postgresql_start ()
30 {
31     # start() always returns 0
32     service postgresql start
33
34     # status() will still return 0 even while still initializing
35     if status postmaster && [ -f /var/lock/subsys/postgresql ] ; then
36         # The only way we can be sure is if we can access it
37         for i in $(seq 1 10) ; do
38             # Must do this as the postgres user initially (before we
39             # fix pg_hba.conf to passwordless localhost access).
40             su -c 'psql -U postgres -c "" template1' postgres && return 0
41             sleep 1
42         done
43     fi
44
45     return 1
46 }
47
48 case "$1" in
49     start)
50         if [ "$PLC_DB_ENABLED" != "1" ] ; then
51             exit 0
52         fi
53
54         MESSAGE=$"Starting database server"
55         dialog "$MESSAGE"
56
57         # Set data directory and redirect startup output to /var/log/pgsql
58         mkdir -p /etc/sysconfig/pgsql
59         (
60             echo "PGDATA=$PGDATA"
61             echo "PGLOG=/var/log/pgsql"
62             echo "PGPORT=$PLC_DB_PORT"
63         ) >>/etc/sysconfig/pgsql/postgresql
64
65         # Fix ownership (rpm installation may have changed it)
66         chown -R -H postgres:postgres $(dirname $PGDATA)
67
68         # PostgreSQL must be started at least once to bootstrap
69         # /var/lib/pgsql/data
70         if [ ! -f $postgresql_conf ] ; then
71             postgresql_start
72             check
73             service postgresql stop
74             check
75         fi
76
77         # Enable DB server. PostgreSQL >=8.0 defines listen_addresses,
78         # PostgreSQL 7.x uses tcpip_socket.
79         if grep -q listen_addresses $postgresql_conf ; then
80             sed -i -e '/^listen_addresses/d' $postgresql_conf
81             echo "listen_addresses = '*'" >>$postgresql_conf
82         elif grep -q tcpip_socket $postgresql_conf ; then
83             sed -i -e '/^tcpip_socket/d' $postgresql_conf
84             echo "tcpip_socket = true" >>$postgresql_conf
85         fi
86
87         # Disable access to all DBs from all hosts
88         sed -i -e '/^\(host\|local\)/d' $pghba_conf
89
90         # Enable passwordless localhost access
91         echo "local all all trust" >>$pghba_conf
92
93         # Enable access from the API and web servers
94         PLC_API_IP=$(gethostbyname $PLC_API_HOST)
95         PLC_WWW_IP=$(gethostbyname $PLC_WWW_HOST)
96         (
97             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_API_IP/32 password"
98             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_WWW_IP/32 password"
99         ) >>$pghba_conf
100
101         # Fix ownership (sed -i changes it)
102         chown postgres:postgres $postgresql_conf $pghba_conf
103
104         # Start up the server
105         postgresql_start
106         check
107
108         # Create/update the unprivileged database user and password
109         if [ -z "$PLC_DB_PASSWORD" ] ; then
110             PLC_DB_PASSWORD=$(uuidgen)
111             plc-config --category=plc_db --variable=password --value="$PLC_DB_PASSWORD" --save
112         fi
113         if ! psql -U $PLC_DB_USER -c "" template1 >/dev/null 2>&1 ; then
114             psql -U postgres -c "CREATE USER $PLC_DB_USER PASSWORD '$PLC_DB_PASSWORD'" template1
115         else
116             psql -U postgres -c "ALTER USER $PLC_DB_USER WITH PASSWORD '$PLC_DB_PASSWORD'" template1
117         fi
118
119         # Create the database if necessary
120         if ! psql -U $PLC_DB_USER -c "" $PLC_DB_NAME >/dev/null 2>&1 ; then
121             createdb -U postgres $PLC_DB_NAME
122             psql -U $PLC_DB_USER -f /usr/share/pl_db/plc_schema_3.sql $PLC_DB_NAME
123         fi
124
125         result "$MESSAGE"
126         ;;
127
128     stop)
129         MESSAGE=$"Stopping database server"
130         dialog "$MESSAGE"
131
132         # Drop the current user in case the username changes
133         psql -U postgres -c "DROP USER $PLC_DB_USER" template1
134
135         # WARNING: If the DB name changes, the old DB will be left
136         # intact and a new one will be created. If it changes
137         # back, the old DB will not be re-created.
138
139         # Shut down the server
140         service postgresql stop
141         check
142
143         result "$MESSAGE"
144         ;;
145 esac
146
147 exit $ERRORS