Answers for "how to add password on the user in postgresql"

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 "how to add password on the user in postgresql"

Browse Popular Code Answers by Language