【mysql 卡死处理】MYSQL--慢查询卡死等处理

命令: show processlist;
如果是root帐号,你能看到所有用户的当前连接。如果是其它普通帐号,只能看到自己占用的连接。
show processlist;只列出前100条,如果想全列出请使用show full processlist;
mysql> show processlist;

发现可以线程。 可以kill 线程号;

show OPEN TABLES where In_use > 0;

show status like '%lock%'


show full processlist;

show status;

参考文档
http://blog.csdn.net/enweitech/article/details/52447006

你可能感兴趣的:(数据开发-mysql)