Versions Compared

Key

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

The hub requires a few extra tables in the qepAuditDB database.

Code Block
languagesql
themerdark
mysql -u shrine -pdemouser qepAuditDB < shrine-setup/hub/sql/mysql.ddl
mysql -u shrine -pdemouser qepAuditDB < shrine-setup/hub/sql/mysql-update.ddl

Sign into MySQL as root and grant the shrine user full access again to all of these databases and their tables:

Code Block
languagebash
themerdark
$ mysql -u root
MariaDB [(none)]> GRANT ALL privileges ON *.* TO 'shrine'@'localhost';
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> \q