Versions Compared

Key

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

Open-AudIT ships with a .sql file used to build the database schema. It is a simple matter to use this and reset the database.

 

NOTE - If you have changed the credentials used by Open-AudIT to access MySQL you will need to adjust the below commands. 

Recreate Database

Linux

Code Block
mysql -u openaudit -popenauditpassword openaudit < /usr/local/open-audit/other/openaudit_mysql.sql

...

Code Block
c:\xampplite\mysql\bin\mysql.exe -u openaudit -popenauditpassword openaudit < c:\xampplite\open-audit\other\openaudit_mysql.sql

 

Completely Delete Database and Recreate

If you would like to completely drop the database, before running the above, run the below command then run the abovecommands.

 

Linux

Code Block
mysql -u root -popenauditrootuserpassword -e "drop database openaudit; create database openaudit;"
mysql -u openaudit -popenauditpassword openaudit < /usr/local/open-audit/other/openaudit_mysql.sql

 

 

Windows

Code Block
c:\xampplite\mysql\bin\mysql.exe -u root -popenauditrootuserpassword -e "drop database openaudit; create database openaudit;"
c:\xampplite\mysql\bin\mysql.exe -u openaudit -popenauditpassword openaudit < c:\xampplite\open-audit\other\openaudit_mysql.sql