Versions Compared

Key

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

...

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;