MySQL深度巡检
1. IO层面检查
查看%util是否接近100%定位是哪个磁盘IO压力大
# cat /sys/block/sda/queue/scheduler
# cat /etc/sysctl.cnf
4.收集MySQL数据库基本信息
(1)收集OS基本信息
#pt-summary
(2)查看MySQL统计信息
#pt-mysql-summary --user=root --password=123456 --host=127.0.0.1 --port=3306
(3)查看用户数据库的存储引擎
mysql>select count(*) as cnt,table_schema,engine from information_schema.tables where table_schema not in('mysql','information_schema','PERFORMANCE_SCHEMA') group by table_schema,engine order by cnt desc;
(4)查看所有表的存储引擎
mysql>select table_schema,table_name,engine,TABLE_ROWS,AVG_ROW_LENGTH,DATA_LENGTH,INDEX_LENGTH from information_schema.tables where table_schema not in('mysql','information_schema','PERFORMANCE_SCHEMA') order by table_schema,TABLE_ROWS desc;
(5)查看线程状态
mysql> show full processlist;
(6)如果第5步有不少SQL经常能看到,把那些SQL的执行计划也收集下,以及相应表的DDL
mysql> explain select....
mysql> show create table table_name;
mysql> show index from table_name;
(7)提供慢日志统计结果
mysqldumpslow slow.log > slow-stat.log
slow.log文件名改成你真正的慢日志文件名
(8)查看死锁
监控死锁
#pt-deadlock-logger--ask-pass --run-time=10 --interval=3 --create-dest-table --dest D=test,t=deadlocks u=root,P=3306,h=127.0.0.1
查看死锁
mysql>select * from deadlocks\G;
5.检查主从同步
(1)从库检查同步状态
检查Slave_IO_Running和Slave_SQL_Running是否都为YES
首先Master_Log_File和Relay_Master_Log_File所指向的文件必须一致。
其次Relay_Log_Pos和Exec_Master_Log_Pos的为止也要一致才行。
(2)主从数据校验
6.PXC集群检查
(1)查看Galera集群每个节点状态
mysql>show status like 'wsrep%';
wsrep_cluster_status状态为Primary
wsrep_connected为ON
(2)masterha_check_ssh验证ssh信任登录是否成功
(3)masterha_check_repl验证mysql复制是否成功
8.查看日志
mysql> show variables like 'log_error';
#cat mysqlerr.log |grep -i -C 5 ERROR
(2)查看备份日志