Skip to content

Instantly share code, notes, and snippets.

@lichti
Created November 20, 2015 16:40
Show Gist options
  • Save lichti/550ae0139be42d0d54af to your computer and use it in GitHub Desktop.
Save lichti/550ae0139be42d0d54af to your computer and use it in GitHub Desktop.
#!/bin/bash
MYSQL_CONN="-uUSER -pPASS";
USERS="'user1','user2','usern'"
mysql ${MYSQL_CONN} -e "select concat('KILL ',id,';') from information_schema.processlist
where user IN (${USERS}) \
into outfile '/tmp/sleep_processes.txt'; \
source /tmp/sleep_processes.txt;"; \
rm -rf /tmp/sleep_processes.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment