欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux排查PHP-FPM进程过量常用命令

程序员文章站 2022-08-17 16:29:47
命令如下: ......

命令如下:

查看每个php-fpm进程的内存占用:ps -ylc php-fpm –sort:rss

查看消耗内存最多的前 40 个进程:ps auxw|head -1;ps auxw|sort -rn -k4|head -40

查看php-fpm的平均内存占用:ps –no-headers -o “rss,cmd” -c php-fpm | awk ‘{ sum+=$1 } end { printf (“%d%s\n”, sum/nr/1024,”m”) }’