Want to subscribe to topics you're interested in?
Become a Member

PHP-FPM Strange error log

Discussion in 'Nginx, PHP-FPM & MariaDB MySQL' started by Mask, Nov 29, 2014.

  1. Mask

    Mask Active Member

    108
    31
    28
    Nov 10, 2014
    Ratings:
    +37
    Local Time:
    6:20 AM
    Nginx 1.9.1
    MariaDB 10.0.19
    Hello,

    I am getting tons of these in my /var/log/php-fpm/www-error.log
    Code:
    [28-Nov-2014 16:26:40.665525] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool phpmyadmin] currently 0 active children, 1 spare children
    [28-Nov-2014 16:26:40.665592] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool www] currently 0 active children, 0 spare children
    [28-Nov-2014 16:26:41.666653] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool phpmyadmin] currently 0 active children, 1 spare children
    [28-Nov-2014 16:26:41.666712] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool www] currently 0 active children, 0 spare children
    [28-Nov-2014 16:26:42.667820] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool phpmyadmin] currently 0 active children, 1 spare children
    [28-Nov-2014 16:26:42.667933] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool www] currently 0 active children, 0 spare children
    [28-Nov-2014 16:26:43.669033] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool phpmyadmin] currently 0 active children, 1 spare children
    [28-Nov-2014 16:26:43.669098] DEBUG: pid 822, fpm_pctl_perform_idle_server_maintenance(), line 362: [pool www] currently 0 active children, 0 spare children
    
    I believe it started happening after I added phpMyAdmin following phpmyadmin.sh Centmin Mod Addon and fastcgi_cache following Nginx Wordpress Configuration Examples for rewrite rules & FastCGI Caching

    Any idea what could be causing this ?

     
  2. eva2000

    eva2000 Administrator Staff Member

    53,461
    12,128
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,668
    Local Time:
    11:20 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    You shouldn't be seeing debug messages (verbose logs for everything even non-errors/normal processes such as above) by default as php-fpm.conf at /usr/local/etc/php-fpm.conf has log_level = warning unless you changed it to debug.
     
  3. Mask

    Mask Active Member

    108
    31
    28
    Nov 10, 2014
    Ratings:
    +37
    Local Time:
    6:20 AM
    Nginx 1.9.1
    MariaDB 10.0.19
    Ummm I don't remember changing it. May be I did that.
    Still can you give me some info about that log message?? What strange is, there is no line 362 in any of the php or nginx config file. (no file is that big)

    Changed log level to warning now.
     
  4. eva2000

    eva2000 Administrator Staff Member

    53,461
    12,128
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,668
    Local Time:
    11:20 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    You can google the error message for more info ;) Basically, it's just normal internal Nginx operations which you brought to visibility by switching log_level to very verbose debug mode.