在工作中经常会遇到监控mysql主从同步状态,需要的账号需要执行show master status和show slave status等命令,只需授予replication client权限即可,
- grant replication client on *.* to monitor@'192.168.1.%' identified by 'monitor';
特此记录一下
本文共 229 字,大约阅读时间需要 1 分钟。
在工作中经常会遇到监控mysql主从同步状态,需要的账号需要执行show master status和show slave status等命令,只需授予replication client权限即可,
特此记录一下
转载于:https://blog.51cto.com/xwh999/983373