Answers for "allow remote connections to postgresql"

1

postgresql allow remote connections

host    all             all              0.0.0.0/0                       md5
host    all             all              ::/0                            md5
Posted by: Guest on January-03-2021
2

how to access remote pstgres

psql -U postgres DATABASE_NAME < backup.sql
Posted by: Guest on August-11-2020
1

postgresql allow remote connections

listen_addresses = '*'
Posted by: Guest on January-03-2021
1

how to access remote pstgres

psql -U postgres
drop database DATABASE_NAME;
create database DATABASE_NAME;
create user USER_NAME;
alter role USER_NAME with password 'BITNAMI_USER_PASSWORD';
grant all privileges on database DATABASE_NAME to USER_NAME;
alter database DATABASE_NAME owner to USER_NAME;
psql -U postgres DATABASE_NAME < backup.sql
Posted by: Guest on August-11-2020

Code answers related to "allow remote connections to postgresql"

Browse Popular Code Answers by Language