Last active
October 11, 2016 17:53
-
-
Save deathcult/7655557 to your computer and use it in GitHub Desktop.
kill mysql sleep process
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ## MySQL 5.1.61 | |
| ## sleep时间大于等于10秒,kill掉: | |
| mysqladmin -u* -p* processlist |grep -i sleep |awk '{if($12>=10) print $2}' |xargs -n1 mysqladmin -u* -p* kill | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment