如何批量殺死當前的MySQL程式

chenfeng發表於2016-09-20
殺掉當前所有的MySQL連線
方法1:
$ mysql -u root -p
Enter password: ******

mysql> select concat('KILL ',id,';') from information_schema.processlist where user='root';
+------------------------+
| concat('KILL ',id,';') |
+------------------------+
| KILL 9;                |
| KILL 8;                |
+------------------------+
2 rows in set (0.02 sec)


mysql>select concat('KILL ',id,';') from information_schema.processlist where user='root' into outfile '/tmp/kill.txt';
Query OK, 2 rows affected (0.00 sec)


mysql>source /tmp/kill.txt;
Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)


方法2:
shell指令碼法:
$for id in `mysqladmin processlist| awk '{print $2}'`do mysqladmin -uroot -p123456 kill $id done

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2125232/,如需轉載,請註明出處,否則將追究法律責任。

相關文章