MySQL慢查询分析工具pt-query-digest的安装和使用

官网:http://www.percona.com/doc/percona-toolkit/2.2/pt-query-digest.html

 

#快速安装

wget https://www.percona.com/downloads/percona-toolkit/2.2.16/RPM/percona-toolkit-2.2.16-1.noarch.rpm && yum localinstall -y  percona-toolkit-2.2.16-1.noarch.rpm

 

 

 

#源码安装:

wget https://www.percona.com/downloads/percona-toolkit/2.2.14/tarball/percona-toolkit-2.2.14.tar.gz

tar -zxvf percona-toolkit-2.2.14.tar.gz 

cd percona-toolkit-2.2.14

#cat Makefile.PL 

#cat README 

perl Makefile.PL 

make 

make test

make install

/usr/local/bin/pt-query-digest  /opt/tuniu/mysql/data/slow-query.log

 

#新增环境变量

env

vi ~/.bash_profile 

source ~/.bash_profile 

 

 

使用

/usr/local/bin/pt-query-digest  /opt/tuniu/mysql/data/slow-query.log

 

其他:

http://blog.csdn.net/wangmuming/article/details/38383449

http://www.ruzuojun.com/topic/592.html

 

工具使用简介:

 

1.查看服务器信息

# pt-summary

详细文档 :http://www.percona.com/doc/percona-toolkit/2.2/pt-summary.html

 

2.查看磁盘开销使用信息

# pt-diskstats

详细文档 :http://www.percona.com/doc/percona-toolkit/2.2/pt-diskstats.html

 

3.查看mysql数据库信息

# pt-mysql-summary --user=root --password=123456

详细文档 :http://www.percona.com/doc/percona-toolkit/2.2/pt-mysql-summary.html

 

4.分析慢查询日志

# pt-query-digest /data/mysql/data/db-3-12-slow.log

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-query-digest.html

 

5.查找mysql的从库和同步状态

# pt-slave-find --host=localhost --user=root --password=123456

详细文档 :http://www.percona.com/doc/percona-toolkit/2.2/pt-slave-find.html

 

6.查看mysql的死锁信息

# pt-deadlock-logger --user=root --password=123456 localhost

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-deadlock-logger.html

 

7.从慢查询日志中分析索引使用情况

# pt-index-usage slow_20131009.log

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-index-usage.html

 

8.查找数据库表中重复的索引

# pt-duplicate-key-checker --host=localhost --user=root --password=123456

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-duplicate-key-checker.html

 

9.查看mysql表和文件的当前活动IO开销

# pt-ioprofile

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-ioprofile.html

 

10.查看不同mysql配置文件的差异

# pt-config-diff /etc/my.cnf /etc/my_master.cnf

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-config-diff.html

 

11. pt-find查找mysql表和执行命令,示例如下

查找数据库里大于2G的表:

# pt-find --user=root --password=123456 --tablesize +2G

查找10天前创建,MyISAM引擎的表:

# pt-find --user=root --password=123456 --ctime +10 --engine MyISAM

查看表和索引大小并排序

# pt-find --user=root --password=123456 --printf "%T\t%D.%N\n" | sort -rn

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-find.html

 

12) pt-kill 杀掉符合标准的mysql进程

显示查询时间大于60秒的查询

# pt-kill --user=root --password=123456 --busy-time 60 --print

kill掉大于60秒的查询

# pt-kill --user=root --password=123456 --busy-time 60 --kill

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-kill.html

 

13)  查看mysql授权

 

 
  1. # pt-show-grants --user=root --password=123456
  2. # pt-show-grants --user=root --password=123456 --separate --revoke

详细文档:http://www.percona.com/doc/percona-toolkit/2.2/pt-show-grants.html

 

14)验证数据库复制的完整性

# pt-table-checksum --user=root --password=123456

你可能感兴趣的:(MySQL慢查询分析工具pt-query-digest的安装和使用)