Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
PMM-12277 From MariaDB 10.5.8-5, we should grant REPLICAT MONITOR to …
Browse files Browse the repository at this point in the history
…the PMM user (#1272)

PMM-12277


From MariaDB 10.5.8-5, we should grant REPLICAT MONITOR to the PMM user
  • Loading branch information
rnovikovP authored Jul 2, 2024
1 parent 4ae0a2a commit 4e744c7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/setting-up/client/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ CREATE USER 'pmm'@'127.0.0.1' IDENTIFIED BY 'pass' WITH MAX_USER_CONNECTIONS 10;
GRANT SELECT, PROCESS, REPLICATION CLIENT, RELOAD ON *.* TO 'pmm'@'127.0.0.1';
```

**On MariaDB 10.5.8+**

```sql
CREATE USER 'pmm'@'127.0.0.1' IDENTIFIED BY 'pass' WITH MAX_USER_CONNECTIONS 10;
GRANT SELECT, PROCESS, REPLICA MONITOR, RELOAD *.* TO 'pmm'@'127.0.0.1';
```


## Choose and configure a source

Expand Down

0 comments on commit 4e744c7

Please sign in to comment.