Mysql在master上查看有哪些slave
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql在master上查看有哪些slave相关的知识,希望对你有一定的参考价值。
mysql> select * from information_schema.processlist as p where p.command = ‘Binlog Dump‘;
或
mysql> show slave hosts;(此方法需要在从服务启动时指定--report-host=HOSTNAME选项,此处HOSTNAME为任意名称。)
本文出自 “LinuxTips” 博客,请务必保留此出处http://linuxtips.blog.51cto.com/11213600/1773936
以上是关于Mysql在master上查看有哪些slave的主要内容,如果未能解决你的问题,请参考以下文章