Heim >Datenbank >MySQL-Tutorial >mysql linux定时杀掉sleep进程_MySQL

mysql linux定时杀掉sleep进程_MySQL

WBOY
WBOYOriginal
2016-06-01 13:45:001159Durchsuche

bitsCN.com

echo "`date` killing mysql sleep process..." >> /tmp/crontab.log 
for id in `mysql -u root -pYourPassword, -e "show processlist"|grep -i -E 'slee 
p|locked'  | awk '{if($6>100){print $1}}'` 
do 
echo "killing pid $id" >> /tmp/crontab.log 
echo `mysql -u root -pYourPassword, -e "kill $id"` 
done 

mysql会有很多sleep进程和locked进程,需要定时去将它们杀掉。这个再配合crontab就可以了。

作者“持续疯长,往天那边去”
 

bitsCN.com
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn