In pg_hba.conf, set the following:
To allow all remote users to log into a postgres database:
In pg_hba.conf, set the following:
In pg_hba.conf, set the following:
# remote hosts Database User From any IP Using PG md5 auth
host all all 0.0.0.0/0 md5
In the postgres.conf, set the following:
listen_addresses = '*'
To allow local UNIX users with the same name as PG users to auth automatically:
local all all trust
No comments:
Post a Comment