Versions Compared

Key

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

...

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:

Code Block
languagebash
themerdark
$ mysql

mysql> CREATE USER 'shrine' IDENTIFIED BY 'demouser';
mysql> GRANT ALL privileges ON *.* TO 'shrine'@localhost;