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?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.