Answers for "postgres login with user"

3

how to connect postgres user password using command line

sudo -u postgres psql postgres
Posted by: Guest on October-04-2020
1

how to login using a particular user postrges

psql -d mydb -U myuser -W
psql -h myhost -d mydb -U myuser -W
Posted by: Guest on May-28-2020
0

create new user in postgres

CREATE USER visualscrapy WITH PASSWORD '123456';
# it will create the new user in postgres
Posted by: Guest on December-13-2020

Code answers related to "postgres login with user"

Browse Popular Code Answers by Language