doc: adjust installation instructions for MySQL 8

This commit is contained in:
Thomas Gelf 2019-04-04 15:18:06 +02:00
parent ba3ce7cd17
commit 623d48f91f
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ HINT: You should replace `some-password` with a secure custom password.
#### MySQL (or MariaDB)
mysql -e "CREATE DATABASE director CHARACTER SET 'utf8';
GRANT ALL ON director.* TO director@localhost IDENTIFIED BY 'some-password';"
CREATE USER director@localhost IDENTIFIED BY 'some-password;
GRANT ALL ON director.* TO director@localhost;"
In case your MySQL root user is password-protected, please add `-p` to this
command.