Changing Database Password
Use the procedure below to change the password of the users mzadmin and mzowner in Oracle, PostgreSQL and SAP HANA databases.
Note!
A prerequisite for this to work properly is that the database is only used by the Platform and not by any configurations.Â
- Disable all workflow groups, either from the Execution Manager in Desktop, or by using the
mzsh wfdisable
command. Let all batch workflows finish execution.
Note!
Batch workflows containing Inter Workflow agents that do not have the Deactivate on Idle check box selected will have to be shutdown manually.
Use the commandÂ
mzsh topo
 get to list the jdbc parameters.$ mzsh topo get -s --format data-only topo://container:<mz.container>/pico:platform/obj:config.properties.mz.jdbc
Example - List of jdbc parameters
mzsh topo get -s --format data-only topo://container:platform1/pico:platform/obj:config.properties.mz.jdbc { "password": "DR-4-48851644227183C2041D838568E117EC", "oracle": { "ons": "" }, "type": "oracle", "user": "mzadmin", "url": "jdbc:oracle:thin:@//<install.ora.host>:1521/MZ" }
Use the
mzsh topo
Âset
 command to update the password for mzadmin:$ mzsh topo set topo://container:<mz.container>/pico:platform/val:config.properties.mz.jdbc.password `mzsh encryptpassword <new password>`
Example - Updating mzadmin password
$ mzsh topo set topo://container:platform1/pico:platform/val:config.properties.mz.jdbc.password `mzsh encryptpassword mypassword`
- Shut down the platform using the
mzsh shutdown
command. - Update the Oracle, PostgreSQL or SAP HANA passwords to correspond to the ones you set in the STR.
- Startup the Platform.
- Enable all workflow groups and start all workflows again.