Answers for "create postgres user with password ubuntu"

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 connect postgres user password using command line

password postgres
Posted by: Guest on October-04-2020
0

create and attach user to a postgresql database

sudo -u postgres psqlpostgres=# create database mydb;postgres=# create user myuser with encrypted password 'mypass';postgres=# grant all privileges on database mydb to myuser;
Posted by: Guest on September-22-2020

Code answers related to "create postgres user with password ubuntu"

Browse Popular Code Answers by Language