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进程来承接请求。

  • 相关阅读:
    mysql多表查询的方式有哪些?
    Linq无聊练习系列4--join练习
    Linq无聊练习系列3--聚合函数练习
    Linq无聊练习系列2--select/distinct练习
    Linq无聊练习系列1--where练习
    人力资源系统遇到的问题
    sqlserver游标概念与实例全面解说
    $.cookie的用法
    JavaScript系列----正则表达式
    ASP.NET中的URL编码解码
  • 原文地址:https://www.cnblogs.com/helww/p/11205209.html
Copyright © 2011-2022 走看看