diff options
-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; ``` |