Update 02-Installation.md

Missing close single quote in Mysql example for password
This commit is contained in:
mzac 2019-10-30 10:17:14 -04:00 committed by Thomas Gelf
parent 7895eee2f6
commit 53309a3d6b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ HINT: You should replace `some-password` with a secure custom password.
#### MySQL (or MariaDB)
mysql -e "CREATE DATABASE director CHARACTER SET 'utf8';
CREATE USER 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