Answers for "change password of user psql"

10

alter user password postgres

ALTER USER user_name WITH PASSWORD 'new_password';
Posted by: Guest on March-12-2021
3

setup password psql

sudo -u postgres psql postgres
password postgres
q
Posted by: Guest on March-09-2021
2

is there any command to change postgres password

ALTER USER user_name WITH PASSWORD 'new_password';
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language