批量殺死mysql程序

2021-09-22 18:16:20 字數 382 閱讀 3043

mysql經常出現大批殭屍程序沒有關閉或大量慢查詢程序導致cpu等負載報警情況,下面的語句用來生成批量kill連線的sql語句,方便dba殺死程序。

按照ip生成殺死程序語句;

select concat(『kill 『,id,』;』) from information_schema.processlist where host like 『192.168.2.187%』

按照使用者名稱生成殺死程序語句;

select concat(『kill 『,id,』;』) from information_schema.processlist where user=『root』;

具體的條件可以根據實際情況,字段可以檢視表 information_schema.processlist

批量殺死程序

ps ef grep apache grep v grep cut c 7 15 xargs kill 9 netstat tupl kill 9 pid grep v grep 是在列出的程序中去除含有關鍵字 grep 的程序。cut c 9 15 是擷取輸入行的第9個字元到第15個字元,而這正好...

linux 批量殺死程序

ps aux grep python grep v grep cut c 9 15 xargs kill 15 管道符 用來隔開兩個命令,管道符左邊命令的輸出會作為管道符右邊命令的輸入。以下是用管道符聯接起來的命令含義 ps aux 是linux 裡檢視所有程序的命令。這時檢索出的程序將作為下一條命...

Linux批量殺死程序

linux 批量殺死程序 使用awk批量殺程序的命令 ps ef grep nginx grep v grep awk sh 列出了當前主機中執行的程序中包含nginx關鍵字的程序 ps ef grep nginx grep v grep 列出了要kill掉這些程序的命令,並將之列印在了螢幕上 ps...