MySQL: Kill all queries / processes of certain user

Open your MySQL client or phpMyAdmin etc. Execute query: MySQL select concat('KILL ',id,';') from information_schema.processlist where user='yourUser' 1 select concat('KILL ',id,';') from information_schema.processlist where user='yourUser' Copy the result lines and...
  [email protected]