如何终止 MySQL“show processlist”中的所有进程?
借助“kill”命令,我们能够终止进程。但是,你需要逐一终止这些进程,因为 MySQL 没有任何大规模终止命令。
要检查进程数,请使用“show processlist”
mysql> show processlist;
以下是输出结果。
+----+-----------------+-----------------+------+---------+------+------------------------+------------------+ | Id | User | Host | db | Command | Time | State | Info | +----+-----------------+-----------------+------+---------+------+------------------------+------------------+ | 4 | event_scheduler | localhost | NULL | Daemon | 7986 | Waiting on empty queue | NULL | | 8 | root | localhost:65180 | test | Query | 0 | starting | show processlist | +----+-----------------+-----------------+------+---------+------+------------------------+------------------+ 2 rows in set (0.00 sec)
要终止已激活超过 10 秒的进程,可以使用以下查询。在此中,我们终止了 Id 为“4”的进程
mysql> select concat('kill ',4,';') -> from information_schema.processlist -> where TIME > 10;
以下是输出结果。
+-----------------------+once; | concat('kill ',4,';') | +-----------------------+ | kill 4; | +-----------------------+ 1 row in set (0.00 sec)
或者,你仍可以尝试以下 MySQL 查询来终止所有进程。
mysql -e "show full processlist;" -ss | awk '{print "KILL "$1";"}'| mysql
广告