Skip to content

Commit

Permalink
Update 02-Installation.md
Browse files Browse the repository at this point in the history
Missing close single quote in Mysql example for password
  • Loading branch information
mzac authored and Thomas-Gelf committed Nov 4, 2019
1 parent 7895eee commit 53309a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/02-Installation.md
Expand Up @@ -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
Expand Down

0 comments on commit 53309a3

Please sign in to comment.