diff options
author | Greg <drakos7@gmail.com> | 2015-09-09 09:43:05 -0400 |
---|---|---|
committer | Greg <drakos7@gmail.com> | 2015-09-09 09:43:05 -0400 |
commit | de3a2de043f2f521284468b960620a3aad400d34 (patch) | |
tree | f5522e2da01e1b23ec9ba2cc2df7f5a7be1005c5 | |
parent | 587c8c49f9216300afccfe8c55bab4af33e3b26b (diff) | |
download | gatekeeper-de3a2de043f2f521284468b960620a3aad400d34.zip gatekeeper-de3a2de043f2f521284468b960620a3aad400d34.tar.gz gatekeeper-de3a2de043f2f521284468b960620a3aad400d34.tar.bz2 |
Update installation-and-configuration.md
"1287 Using GRANT for creating new user is deprecated and will be removed in future release. Create new user with CREATE USER statement."
-rw-r--r-- | docs/installation-and-configuration.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/installation-and-configuration.md b/docs/installation-and-configuration.md index d5dc9ba..89180a9 100644 --- a/docs/installation-and-configuration.md +++ b/docs/installation-and-configuration.md @@ -26,7 +26,8 @@ There's a "quick start" method for getting Gatekeeper up and running in two step ``` create database gatekeeper; -grant all on gatekeeper.* to 'gk-user'@'localhost' identified by 'some-password-here'; +CREATE USER 'gk-user'@'localhost' IDENTIFIED BY 'some-password-here'; +grant all on gatekeeper.* to 'gk-user'@'localhost'; flush privileges; ``` |