Changing Postgres User Password

I’d like to change the generated postgres user password.

Do I need to restart the services that are using this postgres db? Any guide on how to do this?

Hi there,

You can change the Postgres user password as you would with any Postgres instance, e.g.:

ALTER USER user_name WITH PASSWORD 'new_password';

Note that any password updates won’t be reflected in the password/credentials provided on the Dashboard, so be sure to make a secure note of your new password.

Alan

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.