-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathinstall-pgbouncer.sh
executable file
·198 lines (168 loc) · 5.99 KB
/
install-pgbouncer.sh
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#!/bin/bash
#==============================================================#
# File : install-pgbouncer.sh
# Mtime : 2019-03-06
# Desc : Install Pgbouncer
# Path : bin/install-pgbouncer.sh
# Author : Vonng([email protected])
# Depend : CentOS7
# Note : Require postgresql
#==============================================================#
# module info
__MODULE_INSTALL_PGBOUNCER="install-pgbouncer"
PROG_DIR="$(cd $(dirname $0) && pwd)"
PROG_NAME="$(basename $0)"
#--------------------------------------------------------------#
# Name: install_pgbouncer
# Desc: init pgbouncer
# Note: assume /bin/pgbouncer exists
#--------------------------------------------------------------#
function install_pgbouncer(){
# download pgbouncer
if [[ ! -x /bin/pgbouncer ]]; then
echo "info: /bin/pgbouncer not found, download from yum"
yum install -q -y pgbouncer 2> /dev/null
if [[ $? != 0 ]]; then
echo "error: yum install pgbouncer failed"
return 2
fi
fi
# init pgbouncer.ini
if [[ -f /opt/conf/pgbouncer.ini ]]; then
echo "info: found pgbouncer.ini in /opt/conf, copy pgbouncer.ini /etc/pgbouncer/"
rm -rf /etc/pgbouncer/pgbouncer.ini
cp -f /opt/conf/pgbouncer.ini /etc/pgbouncer/pgbouncer.ini
else
echo "info: overwrite /etc/pgbouncer/pgbouncer.ini"
cat > /etc/pgbouncer/pgbouncer.ini <<- EOF
[databases]
postgres =
[pgbouncer]
logfile = /var/log/pgbouncer/pgbouncer.log
pidfile = /var/run/pgbouncer/pgbouncer.pid
listen_addr = *
listen_port = 6432
auth_type = trust
auth_file = /etc/pgbouncer/userlist.txt
unix_socket_dir = /var/run/postgresql
admin_users = postgres
stats_users = stats, postgres
pool_mode = session
server_reset_query =
max_client_conn = 50000
default_pool_size = 25
reserve_pool_size = 5
reserve_pool_timeout = 5
log_connections = 0
log_disconnections = 0
application_name_add_host = 1
ignore_startup_parameters = extra_float_digits
EOF
fi
# init pgbouncer userlist
if [[ -f /opt/conf/userlist.txt ]]; then
echo "info: found userlist.txt in /opt/conf, copy userlist.txt /etc/pgbouncer/"
rm -rf /etc/pgbouncer/userlist.txt
cp -f /opt/conf/userlist.txt /etc/pgbouncer/userlist.txt
else
echo "info: overwrite /etc/pgbouncer/userlist.txt"
cat > /etc/pgbouncer/userlist.txt <<- EOF
"postgres": "postgres"
"test" : "test"
EOF
fi
# pgbouncer limit
echo "info: increase pgbouncer file limit"
cat > /etc/security/limits.d/pgbouncer.conf <<- EOF
pgbouncer soft nproc 655360
pgbouncer hard nofile 655360
pgbouncer soft nofile 655360
pgbouncer soft stack unlimited
pgbouncer hard stack unlimited
pgbouncer soft core unlimited
pgbouncer hard core unlimited
pgbouncer soft memlock 250000000
pgbouncer hard memlock 250000000
EOF
# init pgbouncer services
if [[ -f /opt/conf/services/pgbouncer.service ]]; then
echo "info: found pgbouncer.services in /opt/conf, copy pgbouncer.service to /etc/systemd/system/"
rm -rf /etc/systemd/system/pgbouncer.service
cp -f /opt/conf/services/pgbouncer.service /etc/systemd/system/pgbouncer.service
else
echo "info: overwrite /etc/systemd/system/pgbouncer.service"
cat > /etc/systemd/system/pgbouncer.service <<- 'EOF'
[Unit]
Description=pgbouncer connection pooling for PostgreSQL
Documentation=https://pgbouncer.github.io
Wants=postgresql.service
ConditionFileNotEmpty=/etc/pgbouncer/pgbouncer.ini
[Service]
User=postgres
Group=postgres
Type=forking
PermissionsStartOnly=true
ExecStartPre=-/usr/bin/mkdir -p /var/run/pgbouncer /var/log/pgbouncer
ExecStartPre=-/usr/bin/chown -R postgres:postgres /var/run/pgbouncer /var/log/pgbouncer /etc/pgbouncer
ExecStart=/bin/pgbouncer -d /etc/pgbouncer/pgbouncer.ini
ExecReload=/bin/kill -SIGHUP $MAINPID
PIDFile=/var/run/pgbouncer/pgbouncer.pid
[Install]
WantedBy=multi-user.target
EOF
fi
chown -R postgres:postgres /var/run/pgbouncer /var/log/pgbouncer /etc/pgbouncer /etc/systemd/system/pgbouncer.service
systemctl daemon-reload
return 0
}
#--------------------------------------------------------------#
# Name: launch_pgbouncer
# Desc: launch pgbouncer service
# Note: Assume pgbouncer.service installed
#--------------------------------------------------------------#
function launch_pgbouncer(){
if ! systemctl | grep pgbouncer.service; then
echo "info: pgbouncer.service not found, install pgbouncer"
install_pgbouncer
fi
systemctl stop pgbouncer > /dev/null 2>&1
systemctl enable pgbouncer > /dev/null 2>&1
systemctl start pgbouncer > /dev/null 2>&1
if [[ $? != 0 ]]; then
systemctl status pgbouncer
return 3
fi
# Double check
if systemctl status pgbouncer > /dev/null 2>&1; then
echo "info: start pgbouncer.service"
else
echo "error: fail to start pgbouncer.service"
fi
return 0
}
#==============================================================#
# Main #
#==============================================================#
function main(){
if [[ $(whoami) != "root" ]]; then
echo "error: install pgbouncer require root"
return 1
fi
local action=${1-''}
case ${action} in
install ) shift; install_pgbouncer $@ ;;
launch ) shift; launch_pgbouncer $@ ;;
* ) launch_pgbouncer $@ ;;
esac
return $?
}
#==============================================================#
# Main #
#==============================================================#
# Code:
# 0 ok
# 1 insufficient privilege
# 2 download pgbouncer failed
# 3 start pgbouncer failed
#==============================================================#
main $@