1
0
-1

I cut and pasted a password into the password fields for the admin account from the List Users edit screen. Now I cannot login to Open-Audit.

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      On the command line of the Open-AudIT server, to reset the password for the admin account to 'password' (without quotes) run the below:

      Windows

      c:\xampplite\mysql\bin\mysql -u openaudit -popenauditpassword -e "USE openaudit; UPDATE oa_user SET `password` = '0ab0a153e5bbcd80c50a02da8c97f3c87686eb8512f5457d30e328d2d4448c8968e9f4875c2eb61356197b851dd33f90658b20b32139233b217be54d903ca3b6' WHERE id = 1;"

      Linux

      mysql -u openaudit -popenauditpassword -e "USE openaudit; UPDATE oa_user SET `password` = '0ab0a153e5bbcd80c50a02da8c97f3c87686eb8512f5457d30e328d2d4448c8968e9f4875c2eb61356197b851dd33f90658b20b32139233b217be54d903ca3b6' WHERE id = 1;"
        CommentAdd your comment...