如何查找mysql DB是slave?
如何通过查询查找mysql DB是从属而不使用“显示从属状态”?
How to find mysql DB is slave with out using "show slave status" by query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何通过查询查找mysql DB是从属而不使用“显示从属状态”?
How to find mysql DB is slave with out using "show slave status" by query?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这里有 3 个选项,您必须检测复制是否正在运行
选项 #1:检查状态变量“Slave_running”
使用 MySQL 5.1/5.5
使用 MySQL 5.0 及后
选项 #2:检查进程列表
使用 MySQL 5.1+/5.5
使用 MySQL 5.0 及之后版本
查找具有“系统”的 2 个 DB 连接用户列中的“用户”。
选项 #3:检查 master.info 是否存在
如果在数据库服务器上设置了复制,请查找 master.info。默认情况下,master.info 通常位于 /var/lib/mysql 或定义 datadir 的任何位置。
只需多次运行“cat master.info”(对于 Windows 社区,请输入 master.info)。如果日志位置发生移动,则复制已开启。如果日志位置没有移动,则可能意味着复制已损坏(SQL 线程中的 SQL 错误)、已停止(由于
STOP SLAVE;
)或已禁用(通过运行CHANGE MASTER TO MASTER_HOST='';
)。Here are 3 options you have to detect if Replication is running
OPTION #1 : Check Status Variable 'Slave_running'
Using MySQL 5.1/5.5
Using MySQL 5.0 and back
OPTION #2 : Check the Process List
Using MySQL 5.1+/5.5
Using MySQL 5.0 and back
Look for 2 DB Conenctions thaty have 'system user' in the user column.
OPTION #3 : Check for presence of master.info
If replication is setup on a DB Server, look for master.info. By default, master.info is usually in /var/lib/mysql or wherever datadir is defined.
Simply run 'cat master.info' multiple times (For Windows community, type master.info). If the log position is moving, replication is on. If the log position is not moving, it could mean that replication is either broken (SQL Error in SQL Thread), stopped (due to
STOP SLAVE;
), or disabled (by runningCHANGE MASTER TO MASTER_HOST='';
).根据 MySQL 文档 - 检查复制状态:
According to MySQL doc - Checking Replication Status:
在 MySQL 5.7 之前,您可以通过执行以下查询来检查“slave_running”变量:SHOW GLOBAL STATUS LIKE 'slave_running';
自 MySQL 5.7 起,slave_running 已被删除,上面的查询返回一个空集
您可以启用“show_compatibility_56”来获取该值,但“show_compatibility_56”已被弃用,并将很快被删除。其原因是 MySQL 正在放弃 information_schema GLOBAL_STATUS 和 SESSION_STATUS 表,转而使用 Performance_schema。
在 SHOW SLAVE STATUS 之外获取 MySQL 5.7 中运行的从属状态的正确方法是使用新的基于复制的 Performance_schema 表。
您可以执行以下查询来获取复制服务的状态:
从 Performance_schema.replication_connection_status 选择 SERVICE_STATE;
Prior to MySQL 5.7, you can check the 'slave_running' variable by executing the following query: SHOW GLOBAL STATUS LIKE 'slave_running';
Since MySQL 5.7, the slave_running has been removed and the above query returns an empty set
You can enable "show_compatibility_56" to get the value but “show_compatibility_56” is deprecated and will be removed soon. The reason for this is because MySQL is moving away from the information_schema GLOBAL_STATUS and SESSION_STATUS tables in preference for performance_schema.
The correct way to get the status of the slave running in MySQL 5.7 outside of SHOW SLAVE STATUS is to use the new replication-based performance_schema tables.
You can execute the following query to get the status of the replication service:
SELECT SERVICE_STATE FROM performance_schema.replication_connection_status;