Versions Compared

Key

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

SHRINE utilizes MySQL in the form of MariaDB, a relational database management system, and uses MySQL as a default. In order to set that up on your system, you will first need to install MariaDB. For more information on MariaDB, please visit: http://mariadb.org/

 


Code Block
languagebash
themerdark
$ yum -y install mariadb-server

-- Start service
$ systemctl start mariadb

-- Enable on boot
$ systemctl enable mariadb

...


After this, you will need to create the SHRINE database user and grant it full access:

...