Search code examples
postgresqlchange-password

How can I change a PostgreSQL user password?


How do I change the password for a PostgreSQL user?


Solution

  • To log in without a password:

    sudo -u user_name psql db_name
    

    To reset the password if you have forgotten:

    ALTER USER user_name WITH PASSWORD 'new_password';