zoukankan      html  css  js  c++  java
  • 【php】fpm的一些异常记录

    [14-Jun-2018 21:46:39] NOTICE: [pool mysite.com] child 4296 exited with code 0 after 51.320215 seconds from start
    [14-Jun-2018 21:46:39] NOTICE: [pool mysite.com] child 4316 started

    这个是什么意思?

    You have pm.max_requests set to '20'. 
    Thus, as soon one of the PHP-FPM child processes reaches 20 requests, the child process exits.
    Then, PHP-FPM automatically opens a new child process once it's needed.
    The number of seconds you see in the log output is telling you how long it took for that specific child process to reach 20 requests. Keep in mind these are just NOTICE entries, and do not indicate an error. You
    'd only need to modify the PHP-FPM configuration settings if you were encountering performance problems.

    You have pm.max_requests set to '20'. Thus, as soon one of the PHP-FPM child processes reaches 20 requests, the child process exits. Then, PHP-FPM automatically opens a new child process once it's needed. The number of seconds you see in the log output is telling you how long it took for that specific child process to reach 0 requests. Keep in mind these are just NOTICE entries, and do not indicate an error. You'd only need to modify the PHP-FPM configuration settings if you were encountering performance problems.

      

    这个表示的含义是,max_requests到达后自动退出后并新启动一个fpm进程来承接请求。

  • 相关阅读:
    SpringBoot整合jsp
    SpringBoot常用application.properties配置
    SpringBoot入门
    vue cli创建vue项目
    vue 指令
    vue hello
    pytest doc
    atom
    java csvutil
    Django uuidfield 实现自动生成唯一列,并设置为主键
  • 原文地址:https://www.cnblogs.com/helww/p/11205209.html
Copyright © 2011-2022 走看看