Answers for "change password postgres pgserver"

11

postgres alter user password

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

is there any command to change postgres password

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

change password postgres pgserver

sudo -u user_name psql db_name
ALTER USER user_name WITH PASSWORD 'new_password';
Posted by: Guest on January-28-2022

Code answers related to "change password postgres pgserver"

Browse Popular Code Answers by Language