环境:
PHP 5.5.38
nginx version: nginx/1.10.2
配置
[php-fpm]
pm = static
pm.max_children = 50
pm.max_requests = 1024
...
;request_terminate_timeout = 0
[nginx.conf]
worker_processes auto;
events {
worker_connections 1024;
}
http{
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
}
间歇性的出现这个问题, 也不重复, 请问大家碰到这种情况应如何排查呢?谢谢.