Open your MySQL client or phpMyAdmin etc.
Execute query:
1 |
select concat('KILL ',id,';') from information_schema.processlist where user='yourUser' |
Copy the result lines and execute them, it should look like:
1 2 3 4 |
kill 12345; kill 12346; kill 12347; ... |
Comments