码迷,mamicode.com
首页 > 数据库 > 详细

pt-heartbeat监测mysql主从同步延迟

时间:2019-09-12 15:00:38      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:sla   lease   follow   com   mysq   lock   安装   结果   host   

pt-heartbeat监测mysql主从同步延迟:

安装percona toolkit(pt-heartbeat为该软件的子命令):

http://repo.percona.com/release/6/RPMS/x86_64/percona-toolkit-3.0.13-1.el6.x86_64.rpm

yum install perl-DBD-MySQL

yum install perl-IO-Socket-SSL

yum install perl-TermReadKey

在主库上创建heartbeat表:

mysql -u root -p‘xxxxx‘

use ming;
create table heartbeat(ts varchar(26) not NULL, server_id int unsigned NOT NULL PRIMARY KEY, file varchar(255) DEFAULT NULL, position bigint unsigned DEFAULT NULL, relay_master_log_file varchar(255) DEFAULT NULL, exec_master_log_pos bigint unsigned DEFAULT NULL);
exit

更新主mysql的heartbeat表,每1秒钟更新1次(这里的root为mysql的root):

pt-heartbeat --user=root --ask-pass --host=localhost --create-table -D ming --interval=1 --update --replace --daemonize

在主mysql上运行监测同步延迟(需先在从mysql上授权):

pt-heartbeat -D ming --table=heartbeat --monitor --host=10.0.1.3 --user=ming --password=xxxxx --master-server-id=1

将延迟结果记录到文件里:

pt-heartbeat -D ming --table=heartbeat --monitor --host=10.0.1.3 --user=ming --password=xxxxx --master-server-id=1 --log=/log/slave.txt --daemonize

pt-heartbeat监测mysql主从同步延迟

标签:sla   lease   follow   com   mysq   lock   安装   结果   host   

原文地址:https://blog.51cto.com/yangzhiming/2437707

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!