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

  • 相关阅读:
    NgModelController: $setViewValue,$render,Formatter, Parser
    #!/usr/bin/env python与#!/usr/bin/python的区别
    post发送数据 mypost input 改变事件
    post发送 ArrayBuffer
    C# 字符串到字节数组,字节数组转整型
    C# WebKitBrowser 设置内容
    C# Tuple 创建一个新二元集合
    C# 时间对比
    C# 控件调整
    C# invoke和begininvoke的用法 __委托
  • 原文地址:https://www.cnblogs.com/helww/p/11205209.html
Copyright © 2011-2022 走看看