IBM Support

Reset Maximo User Password

Question & Answer


Question

How can a user's password be reset when you cannot log into Maximo

Answer

If you are using Maximo security, user authentication done in Maximo, the user password can be updated. If you cannot login as an administrative user to change passwords via the Users application the password in the maxuser table can be set to a password you know so you can login and change passwords via the Users application.

From a Maximo environment you can login as an administrative user, connect to the database for that environment with a SQL tool.

Run the following SQL to get show the encrypted password:

Select userid, password from maxuser where userid = '<user>'

For example: Select userid, password from maxuser where userid = 'MAXADMIN'

The output:


USERID PASSWORD
--------- --------------------------------
MAXADMIN 10fe6f4650b2acb49a2121d7e6133e64

Copy the encrypted password and run update statements in the database for the environment you cannot log into.

The syntax for each database platform is different.
For Oracle:
UPDATE maxuser
SET PASSWORD = '<value>'
WHERE userid = '<user>'

For SQL Server:
UPDATE maxuser
SET PASSWORD = 0x<value>
WHERE userid = '<user>'

For DB2:
UPDATE maxuser
SET PASSWORD = x'<value>'
WHERE userid = '<user>'

From the example above the update statements to set the maxadmin password to maxadmin would be:
Oracle:
UPDATE maxuser
SET PASSWORD = '10fe6f4650b2acb49a2121d7e6133e64'
WHERE userid = 'MAXADMIN'

SQL Server:
UPDATE maxuser
SET PASSWORD = 0x10fe6f4650b2acb49a2121d7e6133e64
WHERE userid = 'MAXADMIN'

DB2:
UPDATE maxuser
SET PASSWORD =x'10fe6f4650b2acb49a2121d7e6133e64'
WHERE userid = 'MAXADMIN'

[{"Product":{"code":"SSLKT6","label":"IBM Maximo Asset Management"},"Business Unit":{"code":"BU055","label":"Cognitive Applications"},"Component":"--","Platform":[{"code":"PF025","label":"Platform Independent"}],"Version":"6.2.1;6.2.2;6.2.3;6.2.4;6.2.5;6.2.6;6.2.7;6.2.8;7.1;7.1.1;7.2;7.2.1;7.5;7.6","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}},{"Product":{"code":"SSWK4A","label":"Maximo Asset Management Essentials"},"Business Unit":{"code":"BU055","label":"Cognitive Applications"},"Component":" ","Platform":[{"code":"","label":""}],"Version":"","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}},{"Product":{"code":"SSWT9A","label":"IBM Control Desk"},"Business Unit":{"code":"BU053","label":"Cloud & Data Platform"},"Component":" ","Platform":[{"code":"","label":""}],"Version":"","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}},{"Product":{"code":"SSLKTY","label":"Maximo Asset Management for IT"},"Business Unit":{"code":"BU053","label":"Cloud & Data Platform"},"Component":" ","Platform":[{"code":"","label":""}],"Version":"","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}},{"Product":{"code":"SSKTXT","label":"Tivoli Change and Configuration Management Database"},"Business Unit":{"code":"BU053","label":"Cloud & Data Platform"},"Component":" ","Platform":[{"code":"","label":""}],"Version":"","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}},{"Product":{"code":"SS6HJK","label":"Tivoli Service Request Manager"},"Business Unit":{"code":"BU053","label":"Cloud & Data Platform"},"Component":" ","Platform":[{"code":"","label":""}],"Version":"","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}}]

Document Information

Modified date:
17 June 2018

UID

swg21645570