mysql mysqlreport_使用mysqlreport查看Mysql数据库信息

mysqlreport是www.hackmysql.com开发的一款基于perl语言编写的状态报告工具。

它将show status 和 show innodb status的输出结果进行处理,使得输出信息的可读性更高。由于是perl编写的脚本,所以需要先安装perl环境,再与mysql数据库连接,因此还需要安装数据库接口DBI 和数据库驱动 DBD-Mysql.

安装perl-DBI

yum install -y perl-DBI

安装mysqlreport

wget http://hackmysql.com/scripts/mysqlreport-3.5.tgz

tar zxvf mysqlreport-3.5.tgz

cd mysqlreport-3.5

perl mysqlreport -u root -password 12345

install_driver(mysql) failed: Can‘t locate DBD/mysql.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.8/i386-linux-thread-multi /usr/lib/perl5/5.8.8 .) at (eval 8) line 3.

Perhaps the DBD::mysql perl module hasn‘t been fully installed,

or perhaps the capitalisation of ‘mysql‘ isn‘t right.

Available drivers: DBM, ExampleP, File, Proxy, Sponge.

at ./mysqlreport line 249

出现以上错误,原因是没有安装DBD-mysql,下载安装wget http://www.cpan.org/modules/by-module/DBD/DBD-mysql-4.020.tar.gz

cd DBD-mysql-4.020

perl Makefile.PL --mysql_config=/usr/local/mysql/bin/mysql_config

make

make install

把mysql的这个库文件路径添加进去echo "/usr/local/mysql/lib/mysql" >> /etc/ld.so.conf

ldconfig

再使用mysqlreportperl mysqlreport -u root -password 12345

脚本有些小的bug,会出现以下错误信息Use of uninitialized value in multiplication (*) at mysqlreport line 829.

Use of uninitialized value in formline at mysqlreport line 1227.

Use of uninitialized value in formline at mysqlreport line 1235.

829行修改成如下方式,则不再提示错误my $is = @_;

my $of = @_;

return sprintf "%.2f", ($is * 100) / ($of ||= 1);

再分析1227和1235行错误

1227 $stats{‘Innodb_buffer_pool_pages_latched‘}, perc($stats{‘Innodb_buffer_pool_pages_latched‘}, $stats{‘Innodb_buffer_pool_pages_total‘})

1235 $stats{‘Innodb_buffer_pool_read_ahead_seq‘}, t($stats{‘Innodb_buffer_pool_read_ahead_seq‘})

查看mysql官方手册

Innodb_buffer_pool_pages_latched

The number of latched pages in InnoDB buffer pool. These are pages currently being read or written or that cannot be flushed or removed for some other reason. Calculation of this variable is expensive, so as of MySQL 5.1.28, it is available only when the UNIV_DEBUG system is defined at server build time.

5.1.28后不默认提供这个参数了。除非编译的时候强制指定。

Innodb_buffer_pool_read_ahead_seq

The number of sequential read-aheads initiated by InnoDB. This happens when InnoDB does a sequential full table scan.

For InnoDB Plugin, this variable was removed in MySQL 5.1.41.

这个变量是InnoDB的存储引擎插件,在5.1.41以后就已经被移除,这里我的数据库是5.5.25,所以以上两个错误不是很重要。

最后执行mysqlreport -u -password 12345看看,以下是部分输出结果的显示

268275b1201b86518e6a04cbbe221919.png

本文出自 “老徐的私房菜” 博客,谢绝转载!

原文:http://laoxu.blog.51cto.com/4120547/1413525

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值