1.innotop安裝
參考官網:http://innotop.googlecode.com/svn/html/installing.html
# wget http://innotop.googlecode.com/files/innotop-1.9.0.tar.gz # tar -zxvf innotop-1.9.0.tar.gz # cd innotop-1.9.0
安裝INNOTOP工具非常簡單,其是由PERL寫的,當然需要PERL環境和相關的工具包。在安裝之前先要確定你的系統安裝了Time::HiRes,Term::ReadKey,DBI,DBD::mysql這四個包
# perl -MCPAN -eshell CPAN> install Time::HiRes CPAN> install Term::ReadKey CPAN> install DBI CPAN> install DBD::mysql
在解壓縮後的源碼路徑下有安裝幫助文件,如下:
# perl Makefile.PL
如果沒有報錯,然後,使用
# make install
這樣就安裝 innotop,安裝之後系統就會多出一個命令,innotop
得到幫助
# innptop --help
參考官網:http://innotop.googlecode.com/svn/html/manual.html
Innotop詳解--非常詳細:http://wenku.baidu.com/link?url=0cvUfYA5gwKfwvoo1gGPkr9NfK1eZ5UHa3gAhXB-pwlOLQDyH_Y_BN8q5kfIi89Rz_9eGwjJlWmIQBSZ4hOgg0A-w1nGVnbMbrlQwmxGWz_
其中在QUERY LIST中有個SLOW參數,該參數可以在/etc/my.cnf的配置文件中配置使用
它能記錄下所有執行超過long_query_time時間的SQL語句, 幫你找到執行慢的SQL, 方便我們對這些SQL進行優化。
-----如何開啟mysql慢查詢-----
1.首先,進入mysql,輸入命令 show variables like '%quer%';
你會看到其中log_slow_queries 的狀態為OFF;long_query_time 為10;
2.編輯/etc/my.cnf文件
在[mysqld]下面添加兩行:
log-slow-queries = /var/lib/mysql/mysql-slow.log long_query_time = 3
log-slow-queries為日志存放目錄;long_query_time為最大查詢秒數(按自己需求設置)。
3.重啟服務使配置生效
/etc/init.d/mysqld restart
重新進入數據庫查詢log_slow_queries狀態為ON。