blob: f08d63606fd22c6375a04accfe95a4d37110657e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
#!/sbin/openrc-run
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-server/files/postgresql.init-8.3,v 1.4 2008/09/28 22:53:02 caleb Exp $
extra_started_commands="reload"
extra_stopped_commands="setup"
depend() {
use net
after firewall
provide postgresql
}
checkconfig() {
if [ ! -d "$PGDATA" ] ; then
eerror "Directory not found: $PGDATA"
eerror "Please make sure that PGDATA points to the right path."
eerror "You can run '/etc/init.d/pgcluster setup' to setup a new database cluster."
return 1
fi
}
start() {
checkconfig || return 1
#ebegin "Starting PostgreSQL"
if [ -f "$PGDATA/postmaster.pid" ] ; then
rm -f "$PGDATA/postmaster.pid"
fi
local retval
if [ ${PG_START_DB} == "yes" ]; then
ebegin "Starting PGCluster database instance"
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pg_ctl start ${WAIT_FOR_START} -o '--silent-mode=true ${PGOPTS}'" >/dev/null
retval=$?
if [ $retval -ne 0 ]; then
eend $retval
else
# The following is to catch the case of an already running server
# in which pg_ctl doesn't know to which server it connected to and false reports the server as 'up'
sleep 2
if [ ! -f "$PGDATA/postmaster.pid" ] ; then
eerror "The pid-file doesn't exist but pg_ctl reported a running server."
eerror "Please check whether there is another server running on the same port or read the log-file."
eend 1
else
local pid=$(grep "^[0-9]\+" "$PGDATA/postmaster.pid")
test -d /proc/"${pid}"
eend $?
fi
fi
fi
if [ ${PG_START_REPLICATE} == "yes" ]; then
ebegin "Starting PGCluster replicate instance"
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pgreplicate -D ${PGDATA} -l" >/dev/null
retval=$?
sleep 1
if [ ! -f "$PGDATA/pgreplicate.pid" ] ; then
eerror "Where's the pid file?"
eend 1
else
local pid=$(grep "^[0-9]\+" "$PGDATA/pgreplicate.pid")
test -d /proc/"${pid}"
eend $?
fi
fi
if [ ${PG_START_LB} == "yes" ]; then
ebegin "Starting PGCluster load balancer instance"
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pglb -D ${PGDATA} -l" >/dev/null
retval=$?
sleep 1
if [ ! -f "$PGDATA/pglb.pid" ] ; then
eerror "Where's the pid file?"
eend 1
else
local pid=$(grep "^[0-9]\+" "$PGDATA/pglb.pid")
test -d /proc/"${pid}"
eend $?
fi
fi
return
}
stop() {
local retval
if [ ${PG_START_LB} == "yes" ]; then
ebegin "Stopping PGCluster Load Balancer instance"
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pglb -D ${PGDATA} -l stop" >/dev/null
eend $?
fi
if [ ${PG_START_REPLICATE} == "yes" ]; then
ebegin "Stopping PGCluster Replicate instance"
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pgreplicate -D ${PGDATA} -l stop" >/dev/null
eend $?
fi
if [ ${PG_START_DB} == "yes" ]; then
ebegin "Stopping PGCLuster database (this can take up to $(( ${WAIT_FOR_DISCONNECT} + ${WAIT_FOR_CLEANUP} )) seconds)"
if [ ! -f "$PGDATA/postmaster.pid" ] ; then
ewarn "$PGDATA/postmaster.pid not found. Was it running?"
eend 1
return 0
fi
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pg_ctl stop -t ${WAIT_FOR_DISCONNECT} -m smart" >/dev/null
retval=$?
[ $retval -eq 0 ] && eend $retval && return $retval
ewarn "Some clients did not disconnect within ${WAIT_FOR_DISCONNECT} seconds."
ewarn "Going to shutdown the server anyway."
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pg_ctl stop -m fast" >/dev/null
retval=$?
[ $retval -eq 0 ] && eend $retval && return $retval
if [ ${WAIT_FOR_QUIT} -eq 0 ] ; then
eerror "Server did not shut down and sending the SIGQUIT has been disabled."
eend $retval
return $retval
fi
ewarn "Shutting down the server gracefully failed."
ewarn "Forcing it to shutdown which leads to a recover-run on next startup."
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pg_ctl stop -m immediate" >/dev/null
retval=$?
[ $retval -eq 0 ] && eend $retval && return $retval
eerror "Forced shutdown failed!!! Something is wrong with your system, please take care of it manually."
eend $?
fi
}
reload() {
ebegin "Reloading PostgreSQL configuration"
su -l ${PGUSER} \
-c "env PGDATA=\"${PGDATA}\" /usr/bin/pg_ctl reload" >/dev/null
eend $?
}
setup() {
ebegin "Creating a new PGCluster database cluster"
if [ -d "${PGDATA}" ] ; then
eend 1 "${PGDATA} already exist"
return
fi
mkdir -p "${PGDATA}"
chown -Rf postgres:postgres "${PGDATA}"
chmod 0700 "${PGDATA}"
cd "${PGDATA}" # to avoid the: could not change directory to "/root"
su -c "/usr/bin/initdb --pgdata ${PGDATA}" postgres
einfo "You can use the '/etc/init.d/pgcluster' script to run PostgreSQL instead"
einfo "of 'pg_ctl'."
eend $?
}
|