How to get PGBouncer auto start on reboot on Linux? How to get PGBouncer auto start on reboot on Linux? postgresql postgresql

How to get PGBouncer auto start on reboot on Linux?


Edit /etc/default/pgbouncer and set

START=1

Then start pgbouncer using the init script:

/etc/init.d/pgbouncer start

The init script will automatically start pgbouncer on boot. But you need to make that START=1 setting.