Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You may need to change the Uptime Infrastructure Monitor Admin user password as part of a regular password rotation if the password has been forgotten or if the previous administrator has left the company.

Since Because user passwords are encrypted and stored in the up.time DataStore, you will need to access the DataStore and use a SQL UPDATE statement to change the password.

...

  1. Open the desired db client to connect to the Uptime Infrastructure Monitor database in MS SQL or Oracle.
  2. In the query window, enter the following statements to change the admin user's password to "uptime":

    Oracle query:

    Code Block
    languagesql
    UPDATE users SET password = '6772c61c438ad4ab8964f628de685f4879c55f55' 
    WHERE username  = 'admin'; COMMIT;

    MS-SQL query:

    Code Block
    languagesql
    UPDATE users SET password = '6772c61c438ad4ab8964f628de685f4879c55f55'
    WHERE username = 'admin'