美文网首页
批量杀死MySQL连接的四种方法详解

批量杀死MySQL连接的四种方法详解

作者: huanfuan | 来源:发表于2018-10-10 16:09 被阅读0次

    、、、
    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='root' into outfile '/tmp/a.txt';
    Query OK, 2 rows affected (0.00 sec)

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

    相关文章

      网友评论

          本文标题:批量杀死MySQL连接的四种方法详解

          本文链接:https://www.haomeiwen.com/subject/zezpaftx.html