@cryptotaxi247 / netdata-1 / commits / 44cf669e8

add missing privilege to fix MySQL slave reporting (#11574)

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

Steffen Weber committed Sep 27, 2021 at 11:26 UTC 44cf669e8849aeb4042fb8e97f0c0cdc3741c396
1 file changed +1 -1
collectors/python.d.plugin/mysql/README.md
+1 -1
@@ -17,7 +17,7 @@ To create the `netdata` user, execute the following in the MySQL shell:
17
18 ```sh
19 create user 'netdata'@'localhost';
20 -grant usage on *.* to 'netdata'@'localhost';
20 +grant usage, replication client on *.* to 'netdata'@'localhost';
21 flush privileges;
22 ```
23 The `netdata` user will have the ability to connect to the MySQL server on `localhost` without a password.