Update Configuring-MariaDB-Monitor.md

Added the missing RELOAD privilege.
This commit is contained in:
Markus Mäkelä
2018-06-15 13:19:47 +03:00
parent 7f1f65b411
commit ddcaa5603b

View File

@ -35,5 +35,5 @@ GRANT REPLICATION CLIENT on *.* to 'monitor_user'@'%';
**Note:** If the automatic failover of the MariaDB Monitor will used, the user **Note:** If the automatic failover of the MariaDB Monitor will used, the user
will require additional grants. Execute the following SQL to grant them. will require additional grants. Execute the following SQL to grant them.
```sql ```sql
GRANT SUPER on *.* to 'monitor_user'@'%'; GRANT SUPER, RELOAD on *.* to 'monitor_user'@'%';
``` ```