Versions Compared

Key

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

...

Windows -

Code Block
cd c:\xampplitexampp\mysql\bin
mysql -u root -popenauditrootuserpassword

...

https://dev.mysql.com/doc/refman/5.7/en/server-status-variables.html

Changing the Open-AudIT users MySQL password.

The default passwords can be found on the Information about default users and passwords page.

...

Code Block
mysql -u root -p mysql;
<enter the root password>
UPDATE mysql.user SET Password=PASSWORD('new-password-here') WHERE USER = 'openaudit';
FLUSH PRIVILEGES;
exit;

After that you should edit the file

Versions prior to v5 = /usr/local/open-audit/code_igniter/application/config/database.php and set $db['default']['password'] to the password (in plain text).

Versions 5 and up = /usr/local/open-audit/app/Config/Database.json