MySql--杀掉数据库连接
Posted Z && Y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySql--杀掉数据库连接相关的知识,希望对你有一定的参考价值。
1. mysql--杀掉数据库连接
sql语句如下:
# 展示所有连接
show processlist
# 杀掉睡眠时间大于600s的连接
select concat('KILL ',id,';') from information_schema.`processlist`
where command = 'Sleep' and time > 600;
# 杀掉发送数据状态的连接
select concat('KILL ',id,';') from information_schema.`processlist`
where state = 'Sending data';
# 杀掉等待状态的连接
select concat('KILL ',id,';') from information_schema.`processlist`
where state = 'Waiting for table metadata lock';
以上是关于MySql--杀掉数据库连接的主要内容,如果未能解决你的问题,请参考以下文章
连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段