'mysql 정기점검'에 해당되는 글 1건


Mysql DB 기본 점검 스크립트


1. OS 점검


free -g

df -h

ps awxuf |grep mysqld |grep -v grep |grep -v safe |awk '{print $4}'

ps ax |grep mysqld

du -sh /mysql_data/log/mysql.err 

cat /etc/my.cnf


2. Mysql DB 점검


/usr/local/mysql/bin/mysql -uroot -p


\s

show processlist;

show global variables;

show global status;

show global status like "select%";

select sum(index_length+data_length)/1024/1024/1024 from information_schema.tables;

show databases;

show engine innodb status\G;

show slave status\G;



블로그 이미지

운명을바꾸는자

IT와 함께 살아가는 삶

,