Need Optimization suggestions for a new server

thambyz
Posts: 10
Joined: Fri Sep 25, 2020 8:47 am

Hi,

This is first time i'm using vestacp/myvestacp. We have taken server with Xeon e3 processor with 32 GB DD4 ECC RAM

I have installed myvestacp on debian with Apache and Nginx as reverse proxy.

This server is only for own use (only our domains will be hosted) and we primarily use it for hosting chamilo software for our school. Currently we have only 1 instance, but we will be having few more instances of chamilo in near future. Currently we will be having around 400-600 visitors online, mostly writing exam in chamilo. Server will be busy mostly 1 or 2 days in a week.

We didn't do any modifications after default install, we kept updating configuration after we faced issues. Below is one of the issue for which i need some suggestions.

Major Issue: I am getting 500 internal server error when website visitors reached around 150-200, Even waiting for some time it did not work, i have manually restared apache.

Below is the error log

Code: Select all

[Fri Oct 09 07:59:11.656395 2020] [mpm_event:error] [pid 2724:tid 140602348725376] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Fri Oct 09 07:59:23.668129 2020] [mpm_event:error] [pid 2724:tid 140602348725376] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
In control panel -> Server -> CONFIGURING SERVER / APACHE2, i have updated the values to randomly high values, can you please check and suggest me if it is good enough or should i change anything else?

content of /etc/apache2/apache2.conf

Code: Select all

# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
#	/etc/apache2/
#	|-- apache2.conf
#	|	`--  ports.conf
#	|-- mods-enabled
#	|	|-- *.load
#	|	`-- *.conf
#	|-- conf.d
#	|	`-- *

# Global configuration
PidFile ${APACHE_PID_FILE}
Timeout 900
ProxyTimeout 900
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 10

<IfModule mpm_prefork_module>
    StartServers          25
    MinSpareServers       50
    MaxSpareServers      100
    ServerLimit         2048
    MaxClients          25000
    MaxRequestsPerChild 25000
</IfModule>

<IfModule mpm_worker_module>
    StartServers          25
    MinSpareThreads      50
    MaxSpareThreads      150 
    ThreadLimit          1024
    ThreadsPerChild      70
    MaxClients          25000
    MaxRequestsPerChild 25000
</IfModule>

<IfModule mpm_event_module>
    StartServers          25
    MinSpareThreads      25
    MaxSpareThreads      750 
    ThreadLimit          1024
    ThreadsPerChild      100
    MaxClients          7000
    MaxRequestsPerChild 25000
</IfModule>

# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
#User www-data
#Group www-data

AccessFileName .htaccess

<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>

DefaultType None
HostnameLookups Off

ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn

# Include module configuration:
Include mods-enabled/*.load
Include mods-enabled/*.conf

# Include list of ports to listen on and which to use for name based vhosts
Include ports.conf

LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%a %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%a %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
LogFormat "%b" bytes

Include conf.d/

# Include the virtual host configurations:
#Include sites-enabled/

ErrorDocument 403 /error/403.html
ErrorDocument 404 /error/404.html
ErrorDocument 500 /error/50x.html
ErrorDocument 501 /error/50x.html
ErrorDocument 502 /error/50x.html
ErrorDocument 503 /error/50x.html
ErrorDocument 506 /error/50x.html

php7.3-fpm status

Code: Select all

service php7.3-fpm status
● php7.3-fpm.service - The PHP 7.3 FastCGI Process Manager
   Loaded: loaded (/lib/systemd/system/php7.3-fpm.service; enabled; vendor preset: enabled)
   Active: active (running) since Fri 2020-10-09 08:03:30 UTC; 22h ago
     Docs: man:php-fpm7.3(8)
 Main PID: 659 (php-fpm7.3)
   Status: "Processes active: 0, idle: 7, Requests: 50332, slow: 0, Traffic: 2.2req/sec"
    Tasks: 8 (limit: 4915)
   Memory: 291.6M
   CGroup: /system.slice/php7.3-fpm.service
           ├─ 659 php-fpm: master process (/etc/php/7.3/fpm/php-fpm.conf)
           ├─1730 php-fpm: pool Domainname
           ├─1759 php-fpm: pool Domainname
           ├─1760 php-fpm: pool Domainname
           ├─1761 php-fpm: pool Domainname
           ├─1764 php-fpm: pool Domainname
           ├─1765 php-fpm: pool Domainname
           └─1771 php-fpm: pool Domainname

Apache2buddy Output

Code: Select all


[ OK ] This script is being run as root.
[ OK ] The utility 'pmap' exists and is available for use: /usr/bin/pmap
[ OK ] The utility 'netstat' exists and is available for use: /usr/bin/netstat
[ OK ] 'php' exists and is available for use: /usr/bin/php
[ OK ] The utility 'apachectl' exists and is available for use: /usr/sbin/apachectl
[ OK ] The port (port 80) is a valid port.
[ -- ] We are attempting to discover the operating system type and version number ...
[ OK ] The 'python' binary exists and is available for use: /usr/bin/python
[ -- ] Distro: debian
[ -- ] Version: 10.5
[ -- ] Codename:
[ OK ] This distro is supported by apache2buddy.pl.
[ OK ] This distro version is supported by apache2buddy.pl.
[ -- ] Hostname: meet.domainname.com
[ -- ] Primary IP: x.x.x.x
[ -- ] We are checking the service running on port 80...
[ -- ] The process listening on port 80 is nginx:
[ -- ] The process running on port 80 is not Apache. Falling back to process list...
[ -- ] Apache is actually listening on port 8080
[ -- ] The process running on port 8080 is Apache/2.4.38 (Debian).
[ -- ] The full path to the Apache config file is: /etc/apache2/apache2.conf
[ -- ] Apache is using event model.
[ OK ] Running user (www-data) matches config (www-data).
[ -- ] pidfile setting is /var/run/apache2$SUFFIX/apache2.pid.
[ -- ] Actual pidfile is /var/run/apache2/apache2.pid.
[ -- ] Parent PID: 17929.
[ OK ] Memory usage of parent PID is less than 50MB: 2232 Kilobytes.
[ -- ] Apache has been running 0d 0h 18m 58s.
[ !! ] *** LOW UPTIME ***.
[ @@ ] The following recommendations may be misleading - apache has been restarted within the last 24 hours.
[ -- ] Your server has 31855 MB of PHYSICAL memory.
[ >> ] ServerLimit directive not found, assuming default values.
[ -- ] Your ServerLimit setting is 16.
[ -- ] Your ThreadsPerChild setting is 25.
[ -- ] Your ThreadsPerChild setting for worker MPM is  25
[ -- ] Your ServerLimit setting for worker MPM is  16
[ -- ] Your MaxRequestWorkers setting is 150.
[ OK ] Current Apache Process Count is 4, including the parent PID.
[ -- ] Number of vhosts detected: 8.
[ -- ]             |________ of which 4 are listening on nonstandard port 8080.
[ OK ] Current Apache vHost Count is less than maxrequestworkers.
[ -- ] This server is NOT running Plesk.
[ -- ] This server is NOT running cPanel.
[ -- ] This server is NOT running Virtualmin.
Use of uninitialized value $real_config in concatenation (.) or string at -
        line 1333 (#1)
    (W uninitialized) An undefined value was used as if it were already
    defined.  It was interpreted as a "" or a 0, but maybe it was a mistake.
    To suppress this warning assign a defined value to your variables.

    To help you figure out what was undefined, perl will try to tell you
    the name of the variable (if any) that was undefined.  In some cases
    it cannot do this, so it also tells you what operation you used the
    undefined value in.  Note, however, that perl optimizes your program
    and the operation displayed in the warning may not necessarily appear
    literally in your program.  For example, "that $foo" is usually
    optimized into "that " . $foo, and the warning will refer to the
    concatenation (.) operator, even though there is no . in
    your program.

Use of uninitialized value $apache_proc_php in concatenation (.) or string at -
        line 2490 (#1)
[ -- ] Your PHP Memory Limit (Per-Process) is .
Use of uninitialized value $apache_proc_php in string eq at - line 2491 (#1)
[ -- ] MySQL Detected => Using 336.09 MB of memory.

[ OK ] No large log files were found in /var/log/apache2.
[ >> ] MaxClients has been hit recently (maximum of 5 results shown), consider the dates and times below:
[Tue Oct 06 13:40:00.024085 2020] [mpm_event:error] [pid 6252:tid 140444530488448] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:40:55.281925 2020] [mpm_event:error] [pid 6800:tid 140543249962112] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:44:55.467382 2020] [mpm_event:error] [pid 8096:tid 140321977369728] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Fri Oct 09 07:59:23.668129 2020] [mpm_event:error] [pid 2724:tid 140602348725376] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Fri Oct 09 08:03:57.230720 2020] [mpm_event:error] [pid 984:tid 140425238643840] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[ !! ] PHP Fatal errors were found, see summaries below.
[ @@ ] Check the logs manually.
[ @@ ]  - /var/log/apache2/domains/domainname.com.error.log.1: 2
[ @@ ]  - /var/log/apache2/domains/domainname.com.error.log: 1188
[ OK ] No package updates found.
[ -- ] apache2 is currently using 59.90 MB of memory.


--------------------------------------------------------------------------------
### GENERAL FINDINGS & RECOMMENDATIONS ###
--------------------------------------------------------------------------------
Apache2buddy.pl report for server: meet.domainname.com (x.x.x.x):

Settings considered for this report:
[ !! ] *** LOW UPTIME ***.
[ @@ ] The following recommendations may be misleading - apache has been restarted within the last 24 hours.

        Your server's physical RAM:                                   31855 MB
        Remaining Memory after other services considered:             31518 MB
        Apache's MaxRequestWorkers directive:                         150      <--------- Current Setting
        Apache MPM Model:                                             event
        Largest Apache process (by memory):                           230 MB
        Apache appears to be running in event mode.
        Please check manually for backend processes such as PHP-FPM and pm.max_children.
        Apache2buddy ONLY calculates maxclients for prefork model.
--------------------------------------------------------------------------------
A log file entry has been made in: /var/log/apache2buddy.log for future reference.

Last 5 entries:

2020/10/10 06:38:24 Uptime: "0d 0h 18m 58s"  Model: "Event" Memory: "31855 MB" Maxclients: "150" Recommended: "N\A" Smallest: "2.17 MB" Avg: "154.65 MB" Largest: "230.96 MB"


** IMPORTANT MESSAGE **

apache2buddy is not a troubleshooting tool.
Do not use it to try and determine why your site
went down or why it was slow.

Perform some proper investigations first, and
only if you found that you were hitting the
MaxRequestWorkers limit, or if your server was
running out of memory (primarily due to
excessive memory usage by Apache), should you
run this script and refer to its output..
root@meet:/# apachectl -V
Server version: Apache/2.4.38 (Debian)
Server built:   2020-08-25T20:08:29
Server's Module Magic Number: 20120211:84
Server loaded:  APR 1.6.5, APR-UTIL 1.6.1
Compiled using: APR 1.6.5, APR-UTIL 1.6.1
Architecture:   64-bit
Server MPM:     event
  threaded:     yes (fixed thread count)
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT="/etc/apache2"
 -D SUEXEC_BIN="/usr/lib/apache2/suexec"
 -D DEFAULT_PIDLOG="/var/run/apache2.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="mime.types"
 -D SERVER_CONFIG_FILE="apache2.conf"

Fixed issue: ->First problem i faced was, few images were not loading, later i came to know that nginx was unable to deliver the image because the path of image is dynamically generated, changing nginx template to hosting-legacy fixed the issue.

Not an Issue: -> Currenly, we are only using PHP Mail function, no webmails. But in myvestacp control panel it shows as
CPU: 1.5 Memory: 3476 mb for spamassassin
CPU: 0 Memory: 1146 mb for clamav-daemon
Spamassasin uses CPU regularly (may be it is scanning mails sent by PHP)

Minor Issue: Few mails are getting struck in mailqueue. Please check the attached graph. I have changed the maximum amount of emails sent by website as shown in viewtopic.php?f=16&t=48. I have changed this setting recently
Attachments
Exim Status
Exim Status
exim usage.png (14.42 KiB)
Last edited by thambyz on Sat Oct 10, 2020 10:23 am, edited 1 time in total.
thambyz
Posts: 10
Joined: Fri Sep 25, 2020 8:47 am

Update: Apache crashed again. I have found there are another set of configuration files at /etc/apache2/mods-available
I have edited mpm_prefork.conf, mpm_event.conf and mpm_worker.conf
Current connections for Apache is 292, Website is taking around 10 seconds to start loading which would usually take 1 second to start loading.

Can you please suggest where to look for this issue?
thambyz
Posts: 10
Joined: Fri Sep 25, 2020 8:47 am

Below is the error.log from /var/log/apache2/
it is telling to increase MaxRequestWorkers, but i'm not sure in which file i have to edit it. Once website visitors reach 150, apache is crashing, i have to manually restart it.

Code: Select all

[Sun Oct 04 00:00:01.504495 2020] [mpm_event:notice] [pid 27431:tid 140435422602368] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sun Oct 04 00:00:01.504518 2020] [core:notice] [pid 27431:tid 140435422602368] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:14:28.907410 2020] [mpm_event:error] [pid 27431:tid 140435422602368] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:15:36.973622 2020] [mpm_event:error] [pid 27431:tid 140435422602368] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:35:40.725240 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 31346 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:40.725274 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 31351 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:40.725281 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 27927 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:40.725288 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 28611 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:40.725294 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 28038 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:40.725316 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 28068 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:42.727322 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 31346 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:42.727349 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 31351 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:42.727357 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 27927 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:42.727365 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 28611 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:42.727373 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 28038 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:42.727382 2020] [core:warn] [pid 27431:tid 140435422602368] AH00045: child process 28068 still did not exit, sending a SIGTERM
[Tue Oct 06 13:35:44.729661 2020] [mpm_event:notice] [pid 27431:tid 140435422602368] AH00491: caught SIGTERM, shutting down
[Tue Oct 06 13:35:44.800215 2020] [mpm_event:notice] [pid 4732:tid 140672270156928] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Tue Oct 06 13:35:44.800267 2020] [core:notice] [pid 4732:tid 140672270156928] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:36:22.837450 2020] [mpm_event:error] [pid 4732:tid 140672270156928] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:36:42.857361 2020] [mpm_event:error] [pid 4732:tid 140672270156928] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:38:14.229231 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 4734 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:14.229262 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 4735 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:14.229268 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5039 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:14.229274 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5069 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:14.229285 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5097 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:14.229293 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5262 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:16.231406 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 4734 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:16.231498 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 4735 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:16.231513 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5039 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:16.231527 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5069 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:16.231542 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5097 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:16.231555 2020] [core:warn] [pid 4732:tid 140672270156928] AH00045: child process 5262 still did not exit, sending a SIGTERM
[Tue Oct 06 13:38:18.233841 2020] [mpm_event:notice] [pid 4732:tid 140672270156928] AH00491: caught SIGTERM, shutting down
[Tue Oct 06 13:38:18.299419 2020] [mpm_event:notice] [pid 5696:tid 139958678856832] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Tue Oct 06 13:38:18.299503 2020] [core:notice] [pid 5696:tid 139958678856832] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:38:40.322634 2020] [mpm_event:error] [pid 5696:tid 139958678856832] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:38:41.323756 2020] [mpm_event:error] [pid 5696:tid 139958678856832] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:39:46.941576 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5700 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:46.941636 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5701 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:46.941651 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5809 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:46.941678 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5857 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:46.941702 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5900 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:46.941720 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5934 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:48.943394 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5700 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:48.943460 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5701 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:48.943472 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5809 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:48.943494 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5857 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:48.943511 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5900 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:48.943525 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5934 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:50.945758 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5700 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:50.945825 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5701 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:50.945840 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5809 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:50.945869 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5857 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:50.945889 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5900 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:50.945930 2020] [core:warn] [pid 5696:tid 139958678856832] AH00045: child process 5934 still did not exit, sending a SIGTERM
[Tue Oct 06 13:39:52.948091 2020] [core:error] [pid 5696:tid 139958678856832] AH00046: child process 5700 still did not exit, sending a SIGKILL
[Tue Oct 06 13:39:52.948239 2020] [core:error] [pid 5696:tid 139958678856832] AH00046: child process 5701 still did not exit, sending a SIGKILL
[Tue Oct 06 13:39:52.948345 2020] [core:error] [pid 5696:tid 139958678856832] AH00046: child process 5809 still did not exit, sending a SIGKILL
[Tue Oct 06 13:39:52.948438 2020] [core:error] [pid 5696:tid 139958678856832] AH00046: child process 5857 still did not exit, sending a SIGKILL
[Tue Oct 06 13:39:52.948533 2020] [core:error] [pid 5696:tid 139958678856832] AH00046: child process 5900 still did not exit, sending a SIGKILL
[Tue Oct 06 13:39:52.948626 2020] [core:error] [pid 5696:tid 139958678856832] AH00046: child process 5934 still did not exit, sending a SIGKILL
[Tue Oct 06 13:39:53.949886 2020] [mpm_event:notice] [pid 5696:tid 139958678856832] AH00491: caught SIGTERM, shutting down
[Tue Oct 06 13:39:54.015713 2020] [mpm_event:notice] [pid 6252:tid 140444530488448] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Tue Oct 06 13:39:54.015786 2020] [core:notice] [pid 6252:tid 140444530488448] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:39:59.022885 2020] [mpm_event:error] [pid 6252:tid 140444530488448] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:40:00.024085 2020] [mpm_event:error] [pid 6252:tid 140444530488448] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:40:35.181485 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6256 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:35.181523 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6257 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:35.181533 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6364 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:35.181552 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6392 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:35.181564 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6393 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:35.181572 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6452 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:37.183744 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6256 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:37.183777 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6257 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:37.183783 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6364 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:37.183789 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6392 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:37.183795 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6393 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:37.183802 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6452 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:39.185954 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6256 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:39.186030 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6257 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:39.186047 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6364 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:39.186076 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6392 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:39.186134 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6393 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:39.186149 2020] [core:warn] [pid 6252:tid 140444530488448] AH00045: child process 6452 still did not exit, sending a SIGTERM
[Tue Oct 06 13:40:41.188226 2020] [core:error] [pid 6252:tid 140444530488448] AH00046: child process 6256 still did not exit, sending a SIGKILL
[Tue Oct 06 13:40:41.188317 2020] [core:error] [pid 6252:tid 140444530488448] AH00046: child process 6257 still did not exit, sending a SIGKILL
[Tue Oct 06 13:40:41.188352 2020] [core:error] [pid 6252:tid 140444530488448] AH00046: child process 6364 still did not exit, sending a SIGKILL
[Tue Oct 06 13:40:41.188390 2020] [core:error] [pid 6252:tid 140444530488448] AH00046: child process 6392 still did not exit, sending a SIGKILL
[Tue Oct 06 13:40:41.188427 2020] [core:error] [pid 6252:tid 140444530488448] AH00046: child process 6393 still did not exit, sending a SIGKILL
[Tue Oct 06 13:40:41.188459 2020] [core:error] [pid 6252:tid 140444530488448] AH00046: child process 6452 still did not exit, sending a SIGKILL
[Tue Oct 06 13:40:42.189737 2020] [mpm_event:notice] [pid 6252:tid 140444530488448] AH00491: caught SIGTERM, shutting down
[Tue Oct 06 13:40:42.265261 2020] [mpm_event:notice] [pid 6800:tid 140543249962112] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Tue Oct 06 13:40:42.265323 2020] [core:notice] [pid 6800:tid 140543249962112] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:40:53.279646 2020] [mpm_event:error] [pid 6800:tid 140543249962112] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:40:55.281925 2020] [mpm_event:error] [pid 6800:tid 140543249962112] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:42:01.589625 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6804 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:01.589689 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6806 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:01.589703 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6993 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:01.589724 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7088 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:01.589745 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7125 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:01.589758 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7153 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:03.591981 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6804 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:03.592047 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6806 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:03.592061 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6993 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:03.592087 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7088 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:03.592109 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7125 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:03.592125 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7153 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:05.594357 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6804 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:05.594418 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6806 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:05.594433 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 6993 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:05.594492 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7088 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:05.594509 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7125 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:05.594521 2020] [core:warn] [pid 6800:tid 140543249962112] AH00045: child process 7153 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:07.596753 2020] [core:error] [pid 6800:tid 140543249962112] AH00046: child process 6804 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:07.596894 2020] [core:error] [pid 6800:tid 140543249962112] AH00046: child process 6806 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:07.596962 2020] [core:error] [pid 6800:tid 140543249962112] AH00046: child process 6993 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:07.597059 2020] [core:error] [pid 6800:tid 140543249962112] AH00046: child process 7088 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:07.597159 2020] [core:error] [pid 6800:tid 140543249962112] AH00046: child process 7125 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:07.597261 2020] [core:error] [pid 6800:tid 140543249962112] AH00046: child process 7153 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:08.598510 2020] [mpm_event:notice] [pid 6800:tid 140543249962112] AH00491: caught SIGTERM, shutting down
[Tue Oct 06 13:42:08.692208 2020] [mpm_event:notice] [pid 7594:tid 140632237094016] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Tue Oct 06 13:42:08.692264 2020] [core:notice] [pid 7594:tid 140632237094016] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:42:25.221283 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7598 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:25.221356 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7599 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:25.221372 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7707 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:25.221389 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7985 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:25.221407 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 8013 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:25.221425 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 8043 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:27.223621 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7598 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:27.223681 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7599 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:27.223696 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7707 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:27.223711 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7985 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:27.223727 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 8013 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:27.223741 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 8043 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:29.225894 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7598 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:29.225940 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7599 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:29.225952 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7707 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:29.225962 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 7985 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:29.225971 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 8013 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:29.225996 2020] [core:warn] [pid 7594:tid 140632237094016] AH00045: child process 8043 still did not exit, sending a SIGTERM
[Tue Oct 06 13:42:31.228205 2020] [core:error] [pid 7594:tid 140632237094016] AH00046: child process 7707 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:31.228272 2020] [core:error] [pid 7594:tid 140632237094016] AH00046: child process 7985 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:31.228332 2020] [core:error] [pid 7594:tid 140632237094016] AH00046: child process 8013 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:31.228376 2020] [core:error] [pid 7594:tid 140632237094016] AH00046: child process 8043 still did not exit, sending a SIGKILL
[Tue Oct 06 13:42:32.229593 2020] [mpm_event:notice] [pid 7594:tid 140632237094016] AH00491: caught SIGTERM, shutting down
[Tue Oct 06 13:42:32.325070 2020] [mpm_event:notice] [pid 8096:tid 140321977369728] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Tue Oct 06 13:42:32.325137 2020] [core:notice] [pid 8096:tid 140321977369728] AH00094: Command line: '/usr/sbin/apache2'
[Tue Oct 06 13:44:48.460458 2020] [mpm_event:error] [pid 8096:tid 140321977369728] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Tue Oct 06 13:44:55.467382 2020] [mpm_event:error] [pid 8096:tid 140321977369728] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Fri Oct 09 07:58:49.532460 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 12612 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:49.532533 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 17370 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:49.532546 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 8734 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:49.532556 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 17761 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:49.532569 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 12907 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:49.532580 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 18086 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:51.534820 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 12612 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:51.534886 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 17370 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:51.534902 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 8734 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:51.534915 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 17761 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:51.534928 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 12907 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:51.534941 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 18086 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:53.536413 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 12612 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:53.536434 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 17370 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:53.536439 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 8734 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:53.536444 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 17761 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:53.536448 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 12907 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:53.536453 2020] [core:warn] [pid 8096:tid 140321977369728] AH00045: child process 18086 still did not exit, sending a SIGTERM
[Fri Oct 09 07:58:55.538661 2020] [core:error] [pid 8096:tid 140321977369728] AH00046: child process 12612 still did not exit, sending a SIGKILL
[Fri Oct 09 07:58:55.538762 2020] [core:error] [pid 8096:tid 140321977369728] AH00046: child process 17370 still did not exit, sending a SIGKILL
[Fri Oct 09 07:58:55.538830 2020] [core:error] [pid 8096:tid 140321977369728] AH00046: child process 8734 still did not exit, sending a SIGKILL
[Fri Oct 09 07:58:55.538891 2020] [core:error] [pid 8096:tid 140321977369728] AH00046: child process 17761 still did not exit, sending a SIGKILL
[Fri Oct 09 07:58:55.538965 2020] [core:error] [pid 8096:tid 140321977369728] AH00046: child process 12907 still did not exit, sending a SIGKILL
[Fri Oct 09 07:58:55.539021 2020] [core:error] [pid 8096:tid 140321977369728] AH00046: child process 18086 still did not exit, sending a SIGKILL
[Fri Oct 09 07:58:56.539391 2020] [mpm_event:notice] [pid 8096:tid 140321977369728] AH00491: caught SIGTERM, shutting down
[Fri Oct 09 07:58:56.641098 2020] [mpm_event:notice] [pid 2724:tid 140602348725376] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Fri Oct 09 07:58:56.641159 2020] [core:notice] [pid 2724:tid 140602348725376] AH00094: Command line: '/usr/sbin/apache2'
[Fri Oct 09 07:59:11.656395 2020] [mpm_event:error] [pid 2724:tid 140602348725376] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Fri Oct 09 07:59:23.668129 2020] [mpm_event:error] [pid 2724:tid 140602348725376] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Fri Oct 09 08:01:16.804461 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 2726 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:16.804539 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 2727 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:16.804553 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 3060 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:16.804564 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 5014 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:16.804574 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 3143 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:18.806724 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 2726 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:18.806776 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 2727 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:18.806785 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 3060 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:18.806793 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 5014 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:20.808537 2020] [core:warn] [pid 2724:tid 140602348725376] AH00045: child process 2727 still did not exit, sending a SIGTERM
[Fri Oct 09 08:01:22.810752 2020] [core:error] [pid 2724:tid 140602348725376] AH00046: child process 2727 still did not exit, sending a SIGKILL
[Fri Oct 09 08:01:23.811994 2020] [mpm_event:notice] [pid 2724:tid 140602348725376] AH00491: caught SIGTERM, shutting down
[Fri Oct 09 08:01:23.882865 2020] [mpm_event:notice] [pid 5304:tid 140337471808640] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Fri Oct 09 08:01:23.882952 2020] [core:notice] [pid 5304:tid 140337471808640] AH00094: Command line: '/usr/sbin/apache2'
[Fri Oct 09 08:01:29.677925 2020] [mpm_event:notice] [pid 5304:tid 140337471808640] AH00491: caught SIGTERM, shutting down
[Fri Oct 09 08:03:30.601560 2020] [mpm_event:notice] [pid 984:tid 140425238643840] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Fri Oct 09 08:03:30.682684 2020] [core:notice] [pid 984:tid 140425238643840] AH00094: Command line: '/usr/sbin/apache2'
[Fri Oct 09 08:03:55.228434 2020] [mpm_event:error] [pid 984:tid 140425238643840] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Fri Oct 09 08:03:57.230720 2020] [mpm_event:error] [pid 984:tid 140425238643840] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Sat Oct 10 06:19:17.523772 2020] [mpm_event:notice] [pid 984:tid 140425238643840] AH00491: caught SIGTERM, shutting down
[Sat Oct 10 06:19:17.634116 2020] [mpm_event:notice] [pid 17929:tid 140079473267840] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 06:19:17.634170 2020] [core:notice] [pid 17929:tid 140079473267840] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 07:16:45.192444 2020] [mpm_event:error] [pid 17929:tid 140079473267840] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:35:17.300325 2020] [mpm_event:error] [pid 17929:tid 140079473267840] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:41:59.343326 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 20148 still did not exit, sending a SIGTERM
[Sat Oct 10 07:41:59.343392 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 17936 still did not exit, sending a SIGTERM
[Sat Oct 10 07:41:59.343407 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 23949 still did not exit, sending a SIGTERM
[Sat Oct 10 07:41:59.343420 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28504 still did not exit, sending a SIGTERM
[Sat Oct 10 07:41:59.343433 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28643 still did not exit, sending a SIGTERM
[Sat Oct 10 07:41:59.343445 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28883 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:01.345624 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 20148 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:01.345680 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 17936 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:01.345694 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 23949 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:01.345707 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28504 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:01.345720 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28643 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:01.345733 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28883 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:03.347891 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 20148 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:03.347950 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 17936 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:03.347966 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 23949 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:03.347982 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28504 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:03.347996 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28643 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:03.348014 2020] [core:warn] [pid 17929:tid 140079473267840] AH00045: child process 28883 still did not exit, sending a SIGTERM
[Sat Oct 10 07:42:05.350264 2020] [core:error] [pid 17929:tid 140079473267840] AH00046: child process 20148 still did not exit, sending a SIGKILL
[Sat Oct 10 07:42:05.350362 2020] [core:error] [pid 17929:tid 140079473267840] AH00046: child process 17936 still did not exit, sending a SIGKILL
[Sat Oct 10 07:42:05.350462 2020] [core:error] [pid 17929:tid 140079473267840] AH00046: child process 23949 still did not exit, sending a SIGKILL
[Sat Oct 10 07:42:05.350531 2020] [core:error] [pid 17929:tid 140079473267840] AH00046: child process 28504 still did not exit, sending a SIGKILL
[Sat Oct 10 07:42:05.350592 2020] [core:error] [pid 17929:tid 140079473267840] AH00046: child process 28643 still did not exit, sending a SIGKILL
[Sat Oct 10 07:42:05.350659 2020] [core:error] [pid 17929:tid 140079473267840] AH00046: child process 28883 still did not exit, sending a SIGKILL
[Sat Oct 10 07:42:06.351997 2020] [mpm_event:notice] [pid 17929:tid 140079473267840] AH00491: caught SIGTERM, shutting down
[Sat Oct 10 07:42:06.433259 2020] [mpm_event:notice] [pid 1832:tid 139852047422592] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 07:42:06.433327 2020] [core:notice] [pid 1832:tid 139852047422592] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 07:42:14.443561 2020] [mpm_event:error] [pid 1832:tid 139852047422592] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:42:16.445877 2020] [mpm_event:error] [pid 1832:tid 139852047422592] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:45:47.148321 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 1834 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:47.148390 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 1835 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:47.148422 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2157 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:47.148441 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2185 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:47.148455 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2186 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:47.148469 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2261 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:49.150165 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 1834 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:49.150225 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 1835 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:49.150237 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2157 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:49.150251 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2185 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:49.150261 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2186 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:49.150272 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2261 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:51.151723 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 1834 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:51.151776 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 1835 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:51.151789 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2157 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:51.151803 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2185 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:51.151817 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2186 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:51.151831 2020] [core:warn] [pid 1832:tid 139852047422592] AH00045: child process 2261 still did not exit, sending a SIGTERM
[Sat Oct 10 07:45:53.153960 2020] [core:error] [pid 1832:tid 139852047422592] AH00046: child process 1834 still did not exit, sending a SIGKILL
[Sat Oct 10 07:45:53.154121 2020] [core:error] [pid 1832:tid 139852047422592] AH00046: child process 1835 still did not exit, sending a SIGKILL
[Sat Oct 10 07:45:53.154219 2020] [core:error] [pid 1832:tid 139852047422592] AH00046: child process 2157 still did not exit, sending a SIGKILL
[Sat Oct 10 07:45:53.154303 2020] [core:error] [pid 1832:tid 139852047422592] AH00046: child process 2185 still did not exit, sending a SIGKILL
[Sat Oct 10 07:45:53.154344 2020] [core:error] [pid 1832:tid 139852047422592] AH00046: child process 2186 still did not exit, sending a SIGKILL
[Sat Oct 10 07:45:53.154380 2020] [core:error] [pid 1832:tid 139852047422592] AH00046: child process 2261 still did not exit, sending a SIGKILL
[Sat Oct 10 07:45:54.155678 2020] [mpm_event:notice] [pid 1832:tid 139852047422592] AH00491: caught SIGTERM, shutting down
[Sat Oct 10 07:45:54.227511 2020] [mpm_event:notice] [pid 4393:tid 140568817411200] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 07:45:54.227566 2020] [core:notice] [pid 4393:tid 140568817411200] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 07:46:02.237530 2020] [mpm_event:error] [pid 4393:tid 140568817411200] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:46:03.238715 2020] [mpm_event:error] [pid 4393:tid 140568817411200] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:50:19.168501 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4397 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:19.168573 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4398 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:19.168587 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4521 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:19.168601 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4602 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:19.168613 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4630 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:19.168624 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4631 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:21.170874 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4397 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:21.170939 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4398 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:21.170953 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4521 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:21.170965 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4602 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:21.170978 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4630 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:21.170990 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4631 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:23.173222 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4397 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:23.173296 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4398 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:23.173312 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4521 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:23.173327 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4602 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:23.173340 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4630 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:23.173354 2020] [core:warn] [pid 4393:tid 140568817411200] AH00045: child process 4631 still did not exit, sending a SIGTERM
[Sat Oct 10 07:50:25.175620 2020] [core:error] [pid 4393:tid 140568817411200] AH00046: child process 4397 still did not exit, sending a SIGKILL
[Sat Oct 10 07:50:25.175776 2020] [core:error] [pid 4393:tid 140568817411200] AH00046: child process 4398 still did not exit, sending a SIGKILL
[Sat Oct 10 07:50:25.175881 2020] [core:error] [pid 4393:tid 140568817411200] AH00046: child process 4521 still did not exit, sending a SIGKILL
[Sat Oct 10 07:50:25.175984 2020] [core:error] [pid 4393:tid 140568817411200] AH00046: child process 4602 still did not exit, sending a SIGKILL
[Sat Oct 10 07:50:25.176090 2020] [core:error] [pid 4393:tid 140568817411200] AH00046: child process 4630 still did not exit, sending a SIGKILL
[Sat Oct 10 07:50:25.176185 2020] [core:error] [pid 4393:tid 140568817411200] AH00046: child process 4631 still did not exit, sending a SIGKILL
[Sat Oct 10 07:50:26.177557 2020] [mpm_event:notice] [pid 4393:tid 140568817411200] AH00491: caught SIGTERM, shutting down
[Sat Oct 10 07:50:26.261113 2020] [mpm_event:notice] [pid 7199:tid 139633345049728] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 07:50:26.261179 2020] [core:notice] [pid 7199:tid 139633345049728] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 07:50:38.275276 2020] [mpm_event:error] [pid 7199:tid 139633345049728] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:50:40.277491 2020] [mpm_event:error] [pid 7199:tid 139633345049728] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:56:19.779434 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7203 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:19.779504 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7205 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:19.779520 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7327 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:19.779534 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7457 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:19.779559 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7486 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:19.779581 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7522 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:21.781796 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7203 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:21.781838 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7205 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:21.781850 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7327 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:21.781861 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7457 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:21.781882 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7486 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:21.781898 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7522 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:23.783309 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7203 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:23.783359 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7205 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:23.783374 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7327 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:23.783387 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7457 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:23.783416 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7486 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:23.783452 2020] [core:warn] [pid 7199:tid 139633345049728] AH00045: child process 7522 still did not exit, sending a SIGTERM
[Sat Oct 10 07:56:25.785611 2020] [core:error] [pid 7199:tid 139633345049728] AH00046: child process 7203 still did not exit, sending a SIGKILL
[Sat Oct 10 07:56:25.785763 2020] [core:error] [pid 7199:tid 139633345049728] AH00046: child process 7205 still did not exit, sending a SIGKILL
[Sat Oct 10 07:56:25.785865 2020] [core:error] [pid 7199:tid 139633345049728] AH00046: child process 7327 still did not exit, sending a SIGKILL
[Sat Oct 10 07:56:25.785965 2020] [core:error] [pid 7199:tid 139633345049728] AH00046: child process 7457 still did not exit, sending a SIGKILL
[Sat Oct 10 07:56:25.786063 2020] [core:error] [pid 7199:tid 139633345049728] AH00046: child process 7486 still did not exit, sending a SIGKILL
[Sat Oct 10 07:56:25.786174 2020] [core:error] [pid 7199:tid 139633345049728] AH00046: child process 7522 still did not exit, sending a SIGKILL
[Sat Oct 10 07:56:26.788065 2020] [mpm_event:notice] [pid 7199:tid 139633345049728] AH00491: caught SIGTERM, shutting down
[Sat Oct 10 07:56:26.873829 2020] [mpm_event:notice] [pid 12632:tid 139737056797824] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 07:56:26.873900 2020] [core:notice] [pid 12632:tid 139737056797824] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 07:56:35.883689 2020] [mpm_event:error] [pid 12632:tid 139737056797824] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:56:36.884858 2020] [mpm_event:error] [pid 12632:tid 139737056797824] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Sat Oct 10 07:57:35.549602 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12636 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:35.549680 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12637 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:35.549696 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12821 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:35.549710 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13098 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:35.549724 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13132 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:35.549740 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13460 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:37.551408 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12636 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:37.551477 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12637 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:37.551493 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12821 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:37.551507 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13098 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:37.551521 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13132 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:37.551536 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13460 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:39.553767 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12636 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:39.553831 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12637 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:39.553845 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 12821 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:39.553879 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13098 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:39.553892 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13132 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:39.553905 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13460 still did not exit, sending a SIGTERM
[Sat Oct 10 07:57:41.556129 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 12636 still did not exit, sending a SIGKILL
[Sat Oct 10 07:57:41.556264 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 12637 still did not exit, sending a SIGKILL
[Sat Oct 10 07:57:41.556342 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 12821 still did not exit, sending a SIGKILL
[Sat Oct 10 07:57:41.556423 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 13098 still did not exit, sending a SIGKILL
[Sat Oct 10 07:57:41.556500 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 13132 still did not exit, sending a SIGKILL
[Sat Oct 10 07:57:41.556559 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 13460 still did not exit, sending a SIGKILL
[Sat Oct 10 07:57:42.557845 2020] [mpm_event:notice] [pid 12632:tid 139737056797824] AH00494: SIGHUP received.  Attempting to restart
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using meet.digichalk.in. Set the 'ServerName' directive globally to suppress this message
[Sat Oct 10 07:57:42.568367 2020] [mpm_event:notice] [pid 12632:tid 139737056797824] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 07:57:42.568379 2020] [core:notice] [pid 12632:tid 139737056797824] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 07:58:32.816507 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13954 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:32.816591 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 14094 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:32.816604 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 14095 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:34.818829 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13954 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:34.818884 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 14094 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:34.818897 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 14095 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:36.820978 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 13954 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:36.821040 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 14094 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:36.821054 2020] [core:warn] [pid 12632:tid 139737056797824] AH00045: child process 14095 still did not exit, sending a SIGTERM
[Sat Oct 10 07:58:38.823270 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 13954 still did not exit, sending a SIGKILL
[Sat Oct 10 07:58:38.823407 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 14094 still did not exit, sending a SIGKILL
[Sat Oct 10 07:58:38.823510 2020] [core:error] [pid 12632:tid 139737056797824] AH00046: child process 14095 still did not exit, sending a SIGKILL
[Sat Oct 10 07:58:39.824807 2020] [mpm_event:notice] [pid 12632:tid 139737056797824] AH00491: caught SIGTERM, shutting down
[Sat Oct 10 08:00:35.228686 2020] [mpm_event:notice] [pid 935:tid 139626859893888] AH00489: Apache/2.4.38 (Debian) mod_fcgid/2.3.9 OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Oct 10 08:00:35.364161 2020] [core:notice] [pid 935:tid 139626859893888] AH00094: Command line: '/usr/sbin/apache2'
[Sat Oct 10 08:00:54.646421 2020] [mpm_event:error] [pid 935:tid 139626859893888] AH10159: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting
[Sat Oct 10 08:00:55.647486 2020] [mpm_event:error] [pid 935:tid 139626859893888] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting

Recently i have updated /etc/apache2/mods-available/mpm_event.conf to below

Code: Select all

# event MPM
# StartServers: initial number of server processes to start
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestWorkers: maximum number of worker threads
# MaxConnectionsPerChild: maximum number of requests a server process serves
<IfModule mpm_event_module>
	StartServers			 20
	MinSpareThreads		 250
	MaxSpareThreads		 750
	ThreadLimit			 900
	ThreadsPerChild		 100
	MaxRequestWorkers	  800
	MaxConnectionsPerChild   0
</IfModule>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
User avatar
myVesta
Site Admin
Posts: 928
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

I think that you can change MaxRequestWorkers is set in /etc/apache2/mods-available/mpm_event.conf
After that restart apache.

Anyway, this is very unusual.
You are either under some http flood attack, or your PHP application is simply holding process for infite time?
What are the values for pm.max_children and request_terminate_timeout and php_admin_value[max_execution_time] in your /etc/php/7.x/fpm/pool.d/yourddomain.com.conf ?

I personally use my own tail -f php script that is monitoring /var/log/apache2/error.log and restart apache if MaxRequestWorkers is reached, but that is always situation when some bot send 300 parallel requests in the same second, or something like that, really abnormal situations.
I can put that script online.
User avatar
myVesta
Site Admin
Posts: 928
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

for exim... run

Code: Select all

exim -bp
to see what emails are in queue.

you can find why they are not sent in log file /var/log/exim4/mainlog
thambyz
Posts: 10
Joined: Fri Sep 25, 2020 8:47 am

Thank you for the update.

I have changed MaxRequestWorkers in /etc/apache2/mods-available/mpm_event.conf from 150 to 900
i have changed pm.max_children in /etc/php/7.3/fpm/pool.d/domain.com.conf from 8 to 150 (php-fpm log showed max children (8) reached

I dont think it is a bot attack, because we will be using server to conducting online assignments for student. All of the students (around 250) will try to attempt exam at once, and each question will be displayed in 1 page. Apache crashes only when we start the exam. My doubt is why apache crashes when it reaches MaxRequestWorkers, why dont it queue requests instead of crashing.

Requested details of /etc/php/7.x/fpm/pool.d/yourddomain.com.conf :
pm.max_children = 150
request_terminate_timeout = 90s
php_admin_value[max_execution_time] = 30


Below is the full details of /etc/php/7.x/fpm/pool.d/yourddomain.com.conf

Code: Select all

[sub.domainname.com]
listen = /run/php/php7.3-fpm-sub.domainname.com.sock
listen.owner = username
listen.group = username
listen.mode = 0666

user = username
group = username

pm = ondemand
pm.max_children = 150
request_terminate_timeout = 90s
pm.max_requests = 50000
pm.process_idle_timeout = 10s
pm.status_path = /status

php_admin_value[upload_tmp_dir] = /home/username/tmp
php_admin_value[session.save_path] = /home/username/tmp
php_admin_value[open_basedir] = /home/username/web/sub.domainname.com/public_html:/home/username/tmp:/bin:/usr/bin:/usr/local/bin:/var/ww$
php_admin_value[upload_max_filesize] = 80M
php_admin_value[max_execution_time] = 30
php_admin_value[post_max_size] = 80M
php_admin_value[memory_limit] = 256M
php_admin_value[sendmail_path] = "/usr/sbin/sendmail -t -i -f [email protected]"
php_admin_flag[mysql.allow_persistent] = off
php_admin_flag[safe_mode] = off

env[PATH] = /usr/local/bin:/usr/bin:/bin
env[TMP] = /home/username/tmp
env[TMPDIR] = /home/username/tmp
env[TEMP] = /home/username/tmp

Below are the details of /etc/apache2/mods-available/mpm_event.conf , i just updated it with reasonably high values. Can you please suggest if i need to change anything for a server with 32 GB ram with only one website and should be able to handle around 500 simultaneous users writing exam in chamilo

Code: Select all

# event MPM
# StartServers: initial number of server processes to start
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestWorkers: maximum number of worker threads
# MaxConnectionsPerChild: maximum number of requests a server process serves
<IfModule mpm_event_module>
        StartServers                     20
       ServerLimit                     48
        MinSpareThreads          50
        MaxSpareThreads          250
        ThreadLimit                      900
        ThreadsPerChild          100
        MaxRequestWorkers         900
        MaxConnectionsPerChild   0
</IfModule>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
User avatar
myVesta
Site Admin
Posts: 928
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

How do you know that Apache is crashed?
Maybe it just fill all slots, and does not have where to accept new connections.

32GB RAM... well... if you got 150 parallel php processess, depending of how much each php process gets, theoretically you can fill all RAM with PHP processes, and maybe kernel start to kill the biggest processes (OOM killer), you can see in /var/log/syslog if that happened.

Stupid question - did you restarted php7.x-fpm after you increased values in pool.d conf?
thambyz
Posts: 10
Joined: Fri Sep 25, 2020 8:47 am

I'm thinking Apache is crashed because once i get 500 error, it doesn't load website again until i manually restart apache. However, i restarted apache within 5 minutes after i got 500 error, might be i am wrong.

PHP-FPM has been restarted after updating using "sudo service php7.3-fpm restart"
However, after updating the values i haven't encountered high traffic in website till now.


Last time when i got 500 error, RAM usage was around 3 GB out of 32 GB (using TOP command) and Load Average was 3.5 for a 4 core 8 thread E3 processor. At that time pm.max_children value was 8, Apache MPM MaxRequestWorkers was 150. Website stopped responding after we got around 160 users online

I will keep checking /var/log/syslog for any issues, i found that "/usr/local/vesta/softaculous/do_backups.php" is running every 5 minutes, i dont have anything installed using softaculous till now, how do i change the backup to like once in a week. In Control Panel -> cron, i dont have this entry.

Code: Select all

Oct 12 12:39:00 meet systemd[1]: phpsessionclean.service: Succeeded.
Oct 12 12:39:00 meet systemd[1]: Started Clean php session files.
Oct 12 12:39:01 meet CRON[21419]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Oct 12 12:40:01 meet CRON[21585]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 12:40:01 meet CRON[21584]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 12:40:01 meet CRON[21586]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 12:45:01 meet CRON[23309]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 12:45:01 meet CRON[23311]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 12:45:01 meet CRON[23312]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 12:50:01 meet CRON[24506]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 12:50:01 meet CRON[24507]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 12:50:01 meet CRON[24508]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 12:51:38 meet systemd[1]: session-844.scope: Succeeded.
Oct 12 12:55:01 meet CRON[25512]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 12:55:01 meet CRON[25515]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 12:55:01 meet CRON[25514]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:00:01 meet CRON[26351]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:00:01 meet CRON[26353]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:00:01 meet CRON[26355]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:05:01 meet CRON[27650]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:05:01 meet CRON[27651]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:05:01 meet CRON[27653]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:07:45 meet systemd[1]: session-886.scope: Succeeded.
Oct 12 13:09:01 meet CRON[28477]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Oct 12 13:09:02 meet systemd[1]: Starting Clean php session files...
Oct 12 13:09:03 meet systemd[1]: phpsessionclean.service: Succeeded.
Oct 12 13:09:03 meet systemd[1]: Started Clean php session files.
Oct 12 13:10:01 meet CRON[28726]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:10:01 meet CRON[28727]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:10:01 meet CRON[28729]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:10:59 meet named[723]: _default: sending trust-anchor-telemetry query '_ta-4f66/NULL'
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:200::b#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:dc3::35#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:2f::f#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:7fe::53#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:2d::d#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:a8::e#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:12::d0d#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:503:c27::2:30#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:9f::42#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:503:ba3e::2:30#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:2::c#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:500:1::53#53
Oct 12 13:10:59 meet named[723]: network unreachable resolving '_ta-4f66/NULL/IN': 2001:7fd::1#53
Oct 12 13:11:00 meet named[723]: network unreachable resolving './DNSKEY/IN': 2001:500:a8::e#53
Oct 12 13:11:00 meet named[723]: managed-keys-zone: Key 20326 for zone . acceptance timer complete: key now trusted
Oct 12 13:11:08 meet freshclam[656]: Mon Oct 12 13:11:08 2020 -> Received signal: wake up
Oct 12 13:11:08 meet freshclam[656]: Mon Oct 12 13:11:08 2020 -> ClamAV update process started at Mon Oct 12 13:11:08 2020
Oct 12 13:11:08 meet freshclam[656]: Mon Oct 12 13:11:08 2020 -> daily.cld database is up to date (version: 25954, sigs: 4330152, f-level: 63, builder: raynman)
Oct 12 13:11:08 meet freshclam[656]: Mon Oct 12 13:11:08 2020 -> main.cvd database is up to date (version: 59, sigs: 4564902, f-level: 60, builder: sigmgr)
Oct 12 13:11:08 meet freshclam[656]: Mon Oct 12 13:11:08 2020 -> bytecode.cvd database is up to date (version: 331, sigs: 94, f-level: 63, builder: anvilleg)
Oct 12 13:13:01 meet CRON[29843]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/cron.php >> /dev/null 2>&1)
Oct 12 13:15:01 meet CRON[29995]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:15:01 meet CRON[29997]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:15:01 meet CRON[29998]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:17:01 meet CRON[30303]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Oct 12 13:17:46 meet named[723]: client @0x7fbc2c1835e0 74.120.14.51#52124 (invalid.parrotdns.com): query (cache) 'invalid.parrotdns.com/A/IN' denied
Oct 12 13:20:01 meet CRON[30735]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:20:01 meet CRON[30734]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:20:01 meet CRON[30736]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:25:01 meet CRON[31529]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:25:01 meet CRON[31536]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:25:01 meet CRON[31535]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:25:49 meet systemd[1]: Starting Cleanup of Temporary Directories...
Oct 12 13:25:49 meet systemd-tmpfiles[31748]: [/usr/lib/tmpfiles.d/fail2ban-tmpfiles.conf:1] Line references path below legacy directory /var/run/, updating /var/run/fail2ban → /run/fail2ban; please update the tmpfiles.d/ drop-in file accordingly.
Oct 12 13:25:49 meet systemd[1]: systemd-tmpfiles-clean.service: Succeeded.
Oct 12 13:25:49 meet systemd[1]: Started Cleanup of Temporary Directories.
Oct 12 13:30:01 meet CRON[32090]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:30:01 meet CRON[32092]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:30:01 meet CRON[32091]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:33:09 meet systemd[1]: session-890.scope: Succeeded.
Oct 12 13:35:01 meet CRON[461]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:35:01 meet CRON[460]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:35:01 meet CRON[462]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:35:02 meet clamd[693]: Mon Oct 12 13:35:02 2020 -> SelfCheck: Database status OK.
Oct 12 13:39:00 meet systemd[1]: Starting Clean php session files...
Oct 12 13:39:00 meet systemd[1]: phpsessionclean.service: Succeeded.
Oct 12 13:39:00 meet systemd[1]: Started Clean php session files.
Oct 12 13:39:01 meet CRON[1010]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Oct 12 13:40:01 meet CRON[1206]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:40:01 meet CRON[1207]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:40:01 meet CRON[1209]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:45:01 meet CRON[2278]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:45:01 meet CRON[2279]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:45:01 meet CRON[2280]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:50:01 meet CRON[2867]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:50:01 meet CRON[2868]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:50:01 meet CRON[2869]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:55:01 meet CRON[3999]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 13:55:01 meet CRON[4000]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 13:55:01 meet CRON[4001]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 13:55:42 meet systemd[1]: Started Session 1013 of user debian.
Oct 12 14:00:01 meet CRON[5063]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 14:00:01 meet CRON[5064]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
Oct 12 14:00:01 meet CRON[5062]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 14:05:01 meet CRON[5920]: (root) CMD (/usr/local/vesta/php/bin/php -d disable_functions="" /usr/local/vesta/softaculous/do_backups.php >> /dev/null 2>&1)
Oct 12 14:05:01 meet CRON[5922]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-rrd)
Oct 12 14:05:01 meet CRON[5923]: (admin) CMD (sudo /usr/local/vesta/bin/v-update-sys-queue backup)
User avatar
myVesta
Site Admin
Posts: 928
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

OK, i will try to put online my php tailf script that is doing automatically restart of apache when it reach MaxRequestWorkers.

Anyway, run:

Code: Select all

v-list-sys-web-status | grep -B 15 "Scoreboard Key:"
and paste result here.
Lets check how many slots apache2 opened.
thambyz
Posts: 10
Joined: Fri Sep 25, 2020 8:47 am

I ran the below command with full path, just command without the path was not working.
Should i run the command when server is busy, because we get users online only once or twice a week, remaining time load on server will be very low.
sudo /usr/local/vesta/bin/v-list-sys-web-status | grep -B 15 "Scoreboard Key:"

Code: Select all

<pre>................................................................
....................................____________________________
________________________________________________________________
________........................................................
................................................................
................................................................
................................................................
................................................................
................................................................
........................________________________________________
_______________________W____________________________________....
................................................................
................................................................
................................................................
....</pre>
<p>Scoreboard Key:<br />
Post Reply