44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
PG_PORT_5432_TCP_ADDR=${PG_PORT_5432_TCP_ADDR:-}
|
|
PG_PORT_5432_TCP_PORT=${PG_PORT_5432_TCP_PORT:-}
|
|
PG_ENV_POSTGRESQL_USER=${PG_ENV_POSTGRESQL_USER:-}
|
|
PG_ENV_POSTGRESQL_PASS=${PG_ENV_POSTGRESQL_PASS:-}
|
|
|
|
if [ ! -f /etc/pgbouncer/pgbconf.ini ]
|
|
then
|
|
cat << EOF > /etc/pgbouncer/pgbconf.ini
|
|
[databases]
|
|
* = host=${PG_PORT_5432_TCP_ADDR} port=${PG_PORT_5432_TCP_PORT}
|
|
|
|
[pgbouncer]
|
|
logfile = /var/log/postgresql/pgbouncer.log
|
|
pidfile = /var/run/postgresql/pgbouncer.pid
|
|
;listen_addr = *
|
|
listen_addr = 0.0.0.0
|
|
listen_port = 5432
|
|
unix_socket_dir = /var/run/postgresql
|
|
;auth_type = any
|
|
auth_type = trust
|
|
auth_file = /etc/pgbouncer/userlist.txt
|
|
pool_mode = session
|
|
server_reset_query = DISCARD ALL
|
|
max_client_conn = 100
|
|
default_pool_size = 20
|
|
ignore_startup_parameters = extra_float_digits
|
|
EOF
|
|
fi
|
|
|
|
if [ ! -s /etc/pgbouncer/userlist.txt ]
|
|
then
|
|
echo '"'"${PG_ENV_POSTGRESQL_USER}"'" "'"${PG_ENV_POSTGRESQL_PASS}"'"' > /etc/pgbouncer/userlist.txt
|
|
fi
|
|
|
|
chown -R postgres:postgres /etc/pgbouncer
|
|
chown root:postgres /var/log/postgresql
|
|
chmod 1775 /var/log/postgresql
|
|
chmod 640 /etc/pgbouncer/userlist.txt
|
|
|
|
/usr/sbin/pgbouncer -u postgres /etc/pgbouncer/pgbconf.ini
|