...
Create a database user to allow access the database.
The needs to:
login
create databases
...
Troubleshooting
no pg_hba.conf entry for host
Edit pg_hba.conf and allow Users access the database.
configure access to the database
edit
postgresql.conf
edit line:
listen_addresses = '*'
allow User access
edit
pg_hba.conf
edit block:
Code Block |
---|
# TYPE DATABASE USER CIDR-ADDRESS METHOD
host all all 0.0.0.0/0 md5 |