Versions Compared

Key

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

...

  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'
    {code}