Answers for "login as user postgres"

3

how to connect postgres user password using command line

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

Make a user in Postgresql

CREATE USER jonathan;
CREATE USER davide WITH PASSWORD 'jw8s0F4';
CREATE USER miriam WITH PASSWORD 'jw8s0F4' VALID UNTIL '2005-01-01';
CREATE USER manuel WITH PASSWORD 'jw8s0F4' CREATEDB;
Posted by: Guest on July-05-2021

Code answers related to "login as user postgres"

Browse Popular Code Answers by Language