From 36bac60e3254402b57800af40b53b5c515b96530 Mon Sep 17 00:00:00 2001 From: Navith Date: Sun, 10 Feb 2019 00:30:48 -0500 Subject: [PATCH] fix SQL command syntax in Application Setup command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c137eb2..8159249 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Once the MariaDB container is deployed, you can enter the following commands int from shell: mysql -u root -p CREATE DATABASE bookstackapp; GRANT USAGE ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword'; -GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@%; +GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@'%'; FLUSH PRIVILEGES; ```