Answers for "add password to user postgres"

-1

how to connect postgres user password using command line

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

postgres create admin user with password

sudo -u postgres createuser -s -i -d -r -l -w <<username>>
sudo -u postgres psql -c "ALTER ROLE <<username>> WITH PASSWORD '<<password>>';"
Posted by: Guest on April-14-2021

Code answers related to "add password to user postgres"

Browse Popular Code Answers by Language