Update 02-Installation.md
Missing close single quote in Mysql example for password
This commit is contained in:
parent
7895eee2f6
commit
53309a3d6b
|
@ -41,7 +41,7 @@ HINT: You should replace `some-password` with a secure custom password.
|
||||||
#### MySQL (or MariaDB)
|
#### MySQL (or MariaDB)
|
||||||
|
|
||||||
mysql -e "CREATE DATABASE director CHARACTER SET 'utf8';
|
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;"
|
GRANT ALL ON director.* TO director@localhost;"
|
||||||
|
|
||||||
In case your MySQL root user is password-protected, please add `-p` to this
|
In case your MySQL root user is password-protected, please add `-p` to this
|
||||||
|
|
Loading…
Reference in New Issue