diff options
author | Bruno Škvorc <bruno@skvorc.me> | 2016-02-07 12:47:03 +0100 |
---|---|---|
committer | Bruno Škvorc <bruno@skvorc.me> | 2016-02-07 12:47:03 +0100 |
commit | 0f782126134f87499534d3690b893b829151cfd1 (patch) | |
tree | dda0e4add2afc3797a6205352f98028b4f28d995 /docs/installation-and-configuration.md | |
parent | f83ccc1bf2a30c1148e02c8ea8b766903828fa9a (diff) | |
parent | af86f3abef6781e719c9a28b0fe9b5c9f794bf94 (diff) | |
download | gatekeeper-0f782126134f87499534d3690b893b829151cfd1.zip gatekeeper-0f782126134f87499534d3690b893b829151cfd1.tar.gz gatekeeper-0f782126134f87499534d3690b893b829151cfd1.tar.bz2 |
Merge pull request #1 from psecio/master
Sync from original
Diffstat (limited to 'docs/installation-and-configuration.md')
-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; ``` |