免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 13973 | 回复: 11
打印 上一主题 下一主题

[Web] 请教关于php-fpm出现 SIGCHLD的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-01 14:46 |只看该作者 |倒序浏览
现一生产服务器,连接数目一大就会出现如下信息。php-fpm.log里面一直会有这样的信息

  1. [root@www logs]# tail php-fpm.log
  2. Apr 01 14:38:13.942822 [NOTICE] fpm_children_make(), line 352: child 14084 (pool default) started
  3. Apr 01 14:38:14.138072 [NOTICE] fpm_got_signal(), line 48: received SIGCHLD
  4. Apr 01 14:38:14.138153 [NOTICE] fpm_children_bury(), line 215: child 13956 (pool default) exited with code 0 after 98.509143 seconds from start
  5. Apr 01 14:38:14.138846 [NOTICE] fpm_children_make(), line 352: child 14085 (pool default) started
  6. Apr 01 14:38:16.545035 [NOTICE] fpm_got_signal(), line 48: received SIGCHLD
  7. Apr 01 14:38:16.545122 [NOTICE] fpm_children_bury(), line 215: child 13958 (pool default) exited with code 0 after 96.974407 seconds from start
  8. Apr 01 14:38:16.545674 [NOTICE] fpm_children_make(), line 352: child 14086 (pool default) started
  9. Apr 01 14:38:19.133433 [NOTICE] fpm_got_signal(), line 48: received SIGCHLD
  10. Apr 01 14:38:19.133512 [NOTICE] fpm_children_bury(), line 215: child 13957 (pool default) exited with code 0 after 101.740640 seconds from start
  11. Apr 01 14:38:19.134466 [NOTICE] fpm_children_make(), line 352: child 14087 (pool default) started
  12. [root@www logs]#
复制代码



采用的是nginx+php-cgi ,nginx 0.7.27 php-5.2.8

fcgi.conf 配置

  1. fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
  2. fastcgi_param  SERVER_SOFTWARE    nginx;

  3. fastcgi_param  QUERY_STRING       $query_string;
  4. fastcgi_param  REQUEST_METHOD     $request_method;
  5. fastcgi_param  CONTENT_TYPE       $content_type;
  6. fastcgi_param  CONTENT_LENGTH     $content_length;

  7. fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
  8. fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
  9. fastcgi_param  REQUEST_URI        $request_uri;
  10. fastcgi_param  DOCUMENT_URI       $document_uri;
  11. fastcgi_param  DOCUMENT_ROOT      $document_root;
  12. fastcgi_param  SERVER_PROTOCOL    $server_protocol;

  13. fastcgi_param  REMOTE_ADDR        $remote_addr;
  14. fastcgi_param  REMOTE_PORT        $remote_port;
  15. fastcgi_param  SERVER_ADDR        $server_addr;
  16. fastcgi_param  SERVER_PORT        $server_port;
  17. fastcgi_param  SERVER_NAME        $server_name;

  18. # PHP only, required if PHP was built with --enable-force-cgi-redirect
  19. fastcgi_param  REDIRECT_STATUS    200;
复制代码





php-fpm.conf配置



  1. <?xml version="1.0" ?>   
  2. <configuration>   
  3.   
  4.   All relative paths in this config are relative to php's install prefix   
  5.   
  6.   <section name="global_options">   
  7.   
  8.     Pid file   
  9.     <value name="pid_file">/usr/local/php/logs/php-fpm.pid</value>   
  10.   
  11.     Error log file   
  12.     <value name="error_log">/usr/local/php/logs/php-fpm.log</value>   
  13.   
  14.     Log level   
  15.     <value name="log_level">notice</value>   
  16.   
  17.     When this amount of php processes exited with SIGSEGV or SIGBUS ...   
  18.     <value name="emergency_restart_threshold">60</value>   
  19.   
  20.     ... in a less than this interval of time, a graceful restart will be initiated.   
  21.     Useful to work around accidental curruptions in accelerator's shared memory.   
  22.     <value name="emergency_restart_interval">1m</value>   
  23.   
  24.     Time limit on waiting child's reaction on signals from master   
  25.     <value name="process_control_timeout">5s</value>   
  26.   
  27.     Set to 'no' to debug fpm   
  28.     <value name="daemonize">yes</value>   
  29.   
  30.   </section>   
  31.   
  32.   <workers>   
  33.   
  34.     <section name="pool">   
  35.   
  36.       Name of pool. Used in logs and stats.   
  37.       <value name="name">default</value>   
  38.   
  39.       Address to accept fastcgi requests on.   
  40.       Valid syntax is 'ip.ad.re.ss:port' or just 'port' or '/path/to/unix/socket'   
  41.       <value name="listen_address">127.0.0.1:9000</value>   
  42.   
  43.       <value name="listen_options">   
  44.   
  45.         Set listen(2) backlog   
  46.         <value name="backlog">-1</value>   
  47.   
  48.         Set permissions for unix socket, if one used.   
  49.         In Linux read/write permissions must be set in order to allow connections from web server.   
  50.         Many BSD-derrived systems allow connections regardless of permissions.   
  51.         <value name="owner"></value>   
  52.         <value name="group"></value>   
  53.         <value name="mode">0666</value>   
  54.       </value>   
  55.   
  56.       Additional php.ini defines, specific to this pool of workers.   
  57.       <value name="php_defines">   
  58.         <value name="sendmail_path">/usr/sbin/sendmail -t -i</value>   
  59.         <value name="display_errors">1</value>   
  60.       </value>   
  61.   
  62.       Unix user of processes   
  63.         <value name="user">www</value>   
  64.   
  65.       Unix group of processes   
  66.         <value name="group">www</value>   
  67.   
  68.       Process manager settings   
  69.       <value name="pm">   
  70.   
  71.         Sets style of controling worker process count.   
  72.         Valid values are 'static' and 'apache-like'   
  73.         <value name="style">static</value>   
  74.   
  75.         Sets the limit on the number of simultaneous requests that will be served.   
  76.         Equivalent to Apache MaxClients directive.   
  77.         Equivalent to PHP_FCGI_CHILDREN environment in original php.fcgi   
  78.         Used with any pm_style.   
  79.         <value name="max_children">128</value>   
  80.   
  81.         Settings group for 'apache-like' pm style   
  82.         <value name="apache_like">   
  83.   
  84.           Sets the number of server processes created on startup.   
  85.           Used only when 'apache-like' pm_style is selected   
  86.           <value name="StartServers">20</value>   
  87.   
  88.           Sets the desired minimum number of idle server processes.   
  89.           Used only when 'apache-like' pm_style is selected   
  90.           <value name="MinSpareServers">5</value>   
  91.   
  92.           Sets the desired maximum number of idle server processes.   
  93.           Used only when 'apache-like' pm_style is selected   
  94.           <value name="MaxSpareServers">35</value>   
  95.   
  96.         </value>   
  97.   
  98.       </value>   
  99.   
  100.       The timeout (in seconds) for serving a single request after which the worker process will be terminated   
  101.       Should be used when 'max_execution_time' ini option does not stop script execution for some reason   
  102.       '0s' means 'off'   
  103.       <value name="request_terminate_timeout">0s</value>   

  104.       The timeout (in seconds) for serving of single request after which a php backtrace will be dumped to slow.log file   
  105.       '0s' means 'off'   
  106.       <value name="request_slowlog_timeout">0s</value>   
  107.   
  108.       The log file for slow requests   
  109.       <value name="slowlog">logs/slow.log</value>   
  110.   
  111.       Set open file desc rlimit   
  112.       <value name="rlimit_files">51200</value>   
  113.   
  114.       Set max core size rlimit   
  115.       <value name="rlimit_core">0</value>   
  116.   
  117.       Chroot to this directory at the start, absolute path   
  118.       <value name="chroot"></value>   
  119.   
  120.       Chdir to this directory at the start, absolute path   
  121.       <value name="chdir"></value>   
  122.   
  123.       Redirect workers' stdout and stderr into main error log.   
  124.       If not set, they will be redirected to /dev/null, according to FastCGI specs   
  125.       <value name="catch_workers_output">yes</value>   
  126.   
  127.       How much requests each process should execute before respawn.   
  128.       Useful to work around memory leaks in 3rd party libraries.   
  129.       For endless request processing please specify 0   
  130.       Equivalent to PHP_FCGI_MAX_REQUESTS   
  131.       <value name="max_requests">500</value>   
  132.   
  133.       Comma separated list of ipv4 addresses of FastCGI clients that allowed to connect.   
  134.       Equivalent to FCGI_WEB_SERVER_ADDRS environment in original php.fcgi (5.2.2+)   
  135.       Makes sense only with AF_INET listening socket.   
  136.       <value name="allowed_clients">127.0.0.1</value>   
  137.   
  138.       Pass environment variables like LD_LIBRARY_PATH   
  139.       All $VARIABLEs are taken from current environment   
  140.       <value name="environment">   
  141.         <value name="HOSTNAME">$HOSTNAME</value>   
  142.         <value name="PATH">/usr/local/bin:/usr/bin:/bin</value>   
  143.         <value name="TMP">/tmp</value>   
  144.         <value name="TMPDIR">/tmp</value>   
  145.         <value name="TEMP">/tmp</value>   
  146.         <value name="OSTYPE">$OSTYPE</value>   
  147.         <value name="MACHTYPE">$MACHTYPE</value>   
  148.         <value name="MALLOC_CHECK_">2</value>   
  149.       </value>   
  150.   
  151.     </section>   
  152.   
  153.   </workers>   
  154.   
  155. </configuration>
复制代码



连接状态

[root@www logs]# netstat -an | grep 80 | awk '{print $6}' | sort | uniq -c | sort -rn
  21182 ESTABLISHED
   4103 TIME_WAIT
   1571 FIN_WAIT2
   1465 FIN_WAIT1
    293 LAST_ACK
    134 SYN_RECV
     24 CONNECTED
     17 SYN_SENT
     12 CLOSING
      1 LISTEN
[root@www logs]# netstat -an | grep 9000 | awk '{print $6}' | sort | uniq -c | sort -rn
   1522 TIME_WAIT
    270 SYN_SENT
     19 ESTABLISHED
      4 SYN_RECV
      1 LISTEN
      1 LAST_ACK
      1 FIN_WAIT1
      1 CLOSE_WAIT
[root@www logs]#




请各位帮忙提下建议

论坛徽章:
0
2 [报告]
发表于 2009-04-01 16:53 |只看该作者

论坛徽章:
0
3 [报告]
发表于 2009-04-01 17:35 |只看该作者
<value name="max_requests">500</value>   

加大点

论坛徽章:
0
4 [报告]
发表于 2009-04-01 20:49 |只看该作者

回复 #3 myfreeke 的帖子

一样不能够解决问题哦

论坛徽章:
0
5 [报告]
发表于 2009-04-04 22:12 |只看该作者
原帖由 huzi1986 于 2009-4-1 20:49 发表
一样不能够解决问题哦

spawn-fcgi 用这个试试。我一直用,很稳定从来没有出过问题

论坛徽章:
0
6 [报告]
发表于 2009-05-12 19:03 |只看该作者
我也碰到类似问题了
请问楼主解决没啊~

论坛徽章:
0
7 [报告]
发表于 2009-09-21 16:27 |只看该作者
我也有这个问题,有时php无法响应

论坛徽章:
0
8 [报告]
发表于 2010-06-17 14:57 |只看该作者
我的也是,不知道怎么弄 呢。

论坛徽章:
0
9 [报告]
发表于 2010-06-18 08:33 |只看该作者
我也是这样的问题,有人帮忙吗

论坛徽章:
0
10 [报告]
发表于 2010-06-22 23:02 |只看该作者
回复 9# slowhand

<value name="max_requests">1024</value>
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP