Skip to content

Commit

Permalink
s/REPLICATION CLIENT/BINLOG MONITOR
Browse files Browse the repository at this point in the history
https://mariadb.com/kb/en/mariabackup-overview/
https://mariadb.com/docs/server/ref/mdb/privileges/BINLOG_MONITOR/

Legacy privilege REPLICATION CLIENT can be used as an alias for BINLOG MONITOR in ES10.5 but the capabilities are different. BINLOG MONITOR does not grant SHOW SLAVE STATUS, or SHOW REPLICA STATUS these are granted with REPLICA MONITOR.
  • Loading branch information
tvdijen authored Dec 12, 2023
1 parent 5022c31 commit d85a74e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/galera/tasks/cluster_nodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
mysql_user:
name: "{{ mariadb_cluster_user }}"
password: "{{ mariadb_cluster_password }}"
priv: "*.*:GRANT RELOAD,PROCESS,LOCK TABLES,REPLICATION CLIENT ON"
priv: "*.*:GRANT RELOAD,PROCESS,LOCK TABLES,BINLOG MONITOR ON"
state: present
login_user: root
login_password: "{{ mariadb_root_password }}"
Expand Down

0 comments on commit d85a74e

Please sign in to comment.