c16f152affa2acb6a8784aa1fa5af2faf2f91a55
[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.9 2007/01/19 16:42:08 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 127.0.0.1/32 password"
98             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_API_IP/32 password"
99             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_WWW_IP/32 password"
100             # Drupal also uses PostgreSQL
101             echo "host drupal $PLC_DB_USER 127.0.0.1/32 password"
102             echo "host drupal $PLC_DB_USER $PLC_WWW_IP/32 password"
103         ) >>$pghba_conf
104
105         # Fix ownership (sed -i changes it)
106         chown postgres:postgres $postgresql_conf $pghba_conf
107
108         # Start up the server
109         postgresql_start
110         check
111
112         # Create/update the unprivileged database user and password
113         if [ -z "$PLC_DB_PASSWORD" ] ; then
114             PLC_DB_PASSWORD=$(uuidgen)
115             plc-config --category=plc_db --variable=password --value="$PLC_DB_PASSWORD" --save
116         fi
117         if ! psql -U $PLC_DB_USER -c "" template1 >/dev/null 2>&1 ; then
118             psql -U postgres -c "CREATE USER $PLC_DB_USER PASSWORD '$PLC_DB_PASSWORD'" template1
119         else
120             psql -U postgres -c "ALTER USER $PLC_DB_USER WITH PASSWORD '$PLC_DB_PASSWORD'" template1
121         fi
122         check
123
124         # Create the databases if necessary
125         if ! psql -U $PLC_DB_USER -c "" $PLC_DB_NAME >/dev/null 2>&1 ; then
126             createdb -U postgres --encoding=UNICODE --owner=$PLC_DB_USER $PLC_DB_NAME
127             psql -U $PLC_DB_USER -f /usr/share/plc_api/$PLC_DB_NAME.sql $PLC_DB_NAME
128         fi
129         check
130         if ! psql -U $PLC_DB_USER -c "" drupal >/dev/null 2>&1 ; then
131             createdb -U postgres --encoding=UNICODE --owner=$PLC_DB_USER drupal
132             psql -U $PLC_DB_USER -f /var/www/html/database/database.pgsql drupal
133         fi
134         check
135
136         result "$MESSAGE"
137         ;;
138
139     stop)
140         MESSAGE=$"Stopping database server"
141         dialog "$MESSAGE"
142
143         # Drop the current user in case the username changes
144         psql -U postgres -c "DROP USER $PLC_DB_USER" template1
145
146         # WARNING: If the DB name changes, the old DB will be left
147         # intact and a new one will be created. If it changes
148         # back, the old DB will not be re-created.
149
150         # Shut down the server
151         service postgresql stop
152
153         # /etc/init.d/postgresql fails if it is not running
154         [ "$PLC_DB_ENABLED" = 1 ] && check
155
156         result "$MESSAGE"
157         ;;
158 esac
159
160 exit $ERRORS