I am having trouble with some changes I'm making to a configuration file. I think PostgreSQL is not using the ones I'm modifying. Is there any way to get postgres (maybe some environment variable) to tell me where I can find the various config files, including pg_hba.conf
and pg_ident.conf
?
RolandoMySQLDBA
185k34 gold badges327 silver badges541 bronze badges
asked Jan 21, 2011 at 12:33
1 Answer 1
Certainly:
SHOW hba_file;
SHOW ident_file;
or just
SHOW ALL;
:-)
answered Jan 21, 2011 at 13:41
lang-sql