Answers for "how do i change postgres username and password?"

SQL
11

alter user password postgres

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

set username and password for postgresql database

sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'postgres';"
Posted by: Guest on August-18-2020
3

is there any command to change postgres password

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

Code answers related to "how do i change postgres username and password?"

Code answers related to "SQL"

Browse Popular Code Answers by Language