From 7f1f65b411354564afe41a919ec68fb7594732d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Fri, 15 Jun 2018 12:36:13 +0300 Subject: [PATCH] Update Configuring-MariaDB-Monitor.md Added a note to monitor creation tutorial about automated failover. --- Documentation/Tutorials/Configuring-MariaDB-Monitor.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Documentation/Tutorials/Configuring-MariaDB-Monitor.md b/Documentation/Tutorials/Configuring-MariaDB-Monitor.md index 15c3a15fb..6524d8554 100644 --- a/Documentation/Tutorials/Configuring-MariaDB-Monitor.md +++ b/Documentation/Tutorials/Configuring-MariaDB-Monitor.md @@ -27,7 +27,13 @@ the monitor waits between each monitoring loop. The monitor user requires the REPLICATION CLIENT privileges to do basic monitoring. To create a user with the proper grants, execute the following SQL. -``` +```sql CREATE USER 'monitor_user'@'%' IDENTIFIED BY 'my_password'; GRANT REPLICATION CLIENT on *.* to 'monitor_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. +```sql +GRANT SUPER on *.* to 'monitor_user'@'%'; +```