I'm confused about a point of pg_pool-II's documentation. The health_check_user is used to determine the health of DB cluster servers, but what abilities does the health_check_user need? As there are no configuration options to get a password for this user, I'm assuming that pg-pool's health_check_user will likewise need trust level access to each DB?
| |||
|
feedback
|
|
It looks like it just needs permission to connect to the databases (same username for all databases). You don't need to rely on trust auth either, I'm sure you can use a .pgpass file. http://www.postgresql.org/docs/9.0/static/libpq-pgpass.html | |||
|
feedback
|