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

  • 相关阅读:
    如何提升自身实力
    python实现远程控制Linux
    python对象之间的关系
    python类的属性和方法
    简单阐述后端测试
    python操作数据库
    AppCrawler
    RobotFramework作业
    接口自动化测试
    CSS3 Backgrounds相关介绍
  • 原文地址:https://www.cnblogs.com/helww/p/11205209.html
Copyright © 2011-2022 走看看