Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a uccidere tutti i processi in Mysql show processlist?

Uccisioni di massa il funzionamento fa risparmiare tempo. Fallo in MySql stesso:

Esegui questi comandi

mysql> select concat('KILL ',id,';') from information_schema.processlist
where user='root' and time > 200 into outfile '/tmp/a.txt';

mysql> source /tmp/a.txt;

Riferimento

---------edit------------

se non vuoi archiviare in un file, salva in una variable

Basta eseguire nel prompt dei comandi

> out1=$(mysql -B test -uroot -proot --disable-column-names  -e "select concat('KILL ',id,';') from information_schema.processlist where user='root' and time > 200;")

> out2= $(mysql -B test -uroot -proot --disable-column-names  -e "$out1")