From fc54175f83cffa4a45178cdb70ffec1326351975 Mon Sep 17 00:00:00 2001 From: Oliver Byford Date: Sat, 27 Apr 2019 23:20:58 +0100 Subject: [PATCH] Fix syntax error in grant statement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3562fd..db522c9 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ To get information about stored credentials, use the following command: **Question: What's minimum privileges needed by a specific mysqltuner user in database ?** - mysql>GRANT SELECT, PROCESS,EXECUTE, REPLICATION CLIENT,SHOW DATABASES,SHOW VIEW ON *.* FOR 'mysqltuner'@'localhost' identified by pwd1234; + mysql>GRANT SELECT, PROCESS,EXECUTE, REPLICATION CLIENT,SHOW DATABASES,SHOW VIEW ON *.* TO 'mysqltuner'@'localhost' identified by pwd1234; **Question: It's not working on my OS! What gives?!**