1
wwwjfy 2013-07-19 15:35:19 +08:00 1
自己写一个,cron定时运行...类似这样
ps h -eo rss,args | grep <...> | grep -v grep | awk '{if ($2 > 3000) print $1}' | xargs kill 3000就是多少kb |
2
wwwjfy 2013-07-19 15:35:54 +08:00
随手写,难免有错,多试试
|
3
swulling 2013-07-19 15:37:06 +08:00 1
man limit
|
4
swulling 2013-07-19 15:41:26 +08:00
额,是ulimit,有人做了个封装,可以看下
https://github.com/pshved/timeout |
5
shiny 2013-07-19 15:50:27 +08:00 1
我们目前在用 supervisor 的 memmon 插件, 设定超过指定内存后自动重启。
|