最近一段時間,我剛剛進入一家新公司,並接手了這裡的一個站點,由於這個站點的架構設計不太合理,導致MySQL的壓力始終很大,經常出現超時的Locked進程,於是編寫了一段Linux的Shell腳本來定時kill掉這些進程。
腳本如下:
代碼如下 復制代碼#!/bin/bash
mysql_pwd="xxxxxx" #mysql的root密碼
mysql_exec="/usr/local/mysql/bin/mysql"
tmp_dir="/tmp"
file_sh="$tmp_dir/mysql_kill_locked.sh"
file_tmp="$tmp_dir/mysql_kill_locked.tmp"
file_log="$tmp_dir/mysql_kill_locked.log" #日志
$mysql_exec -uroot -p$mysql_pwd -e "show processlist" | grep -i "Locked" > $file_tmp
cat $file_tmp >> $file_log
for line in `cat $file_tmp | awk '{print $1}'`
do
echo "$mysql_exec -uroot -p$mysql_pwd -e "kill $line"" >> $file_sh
done
chmod +x $file_sh
sh $file_sh #執行臨時腳本
> $file_sh #清空臨時腳本
最後,將這段腳本加入到crontab,定時執行即可。