码迷,mamicode.com
首页 > 数据库 > 详细

MySQL 杀死指定用户的全部进程

时间:2015-08-13 20:33:01      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:mysql

mysql> select concat(‘KILL ‘,id,‘;‘) from information_schema.processlist where user=‘root‘;  

+------------------------+  

| concat(‘KILL ‘,id,‘;‘) |  

+------------------------+  

| KILL 3101;             |  

| KILL 2946;             |  

+------------------------+ 

 2 rows in set (0.00 sec)  


mysql>select concat(‘KILL ‘,id,‘;‘) from information_schema.processlist where user=‘mysql_lama‘ into outfile ‘/tmp/aa7.txt‘;  


select concat(‘KILL ‘,id,‘;‘) from information_schema.processlist where info is not null and user<>‘root‘ and user<>‘system user‘ and time>1  into outfile ‘/tmp/a132.txt‘;   


mysql>source /tmp/a.txt;  


本文出自 “云淡风轻” 博客,谢绝转载!

MySQL 杀死指定用户的全部进程

标签:mysql

原文地址:http://liuminkun.blog.51cto.com/10171900/1684233

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!