These steps describe how to change the PostgreSQL passwords using pgAdmin, although you can use any SQL query tool to perform this task.
Steps
Right-click on a database, and then select Query Tool.
The workspace for the selected database appears.
In the workspace, enter ALTER statements for each role to be changed using the following format:
ALTER ROLE username SET PASSWORD TO 'newpassword'
At the top of the workspace, select .
The query runs and the password is changed.
Note: For more information about the PostgreSQL roles, see the PostgreSQL documentation.
What's Next?
Copyright © 2018 General Electric Company. All rights reserved.