Page 1 of 1

Apache errors

PostPosted: 07. December 2017 15:04
by matrixebiz
Hello, what do these errors mean and should I do something to fix?
This is my mpm.conf;
<IfModule mpm_winnt_module>
ThreadsPerChild 1000
MaxConnectionsPerChild 1000
</IfModule>

[Thu Dec 07 08:59:22.738314 2017] [mpm_winnt:notice] [pid 8536:tid 168] AH00354: Child: Starting 1000 worker threads.
[Thu Dec 07 08:59:32.677342 2017] [mpm_winnt:notice] [pid 2220:tid 560] AH00364: Child: All worker threads have exited.
[Thu Dec 07 08:59:49.328681 2017] [mpm_winnt:notice] [pid 8536:tid 168] AH00358: Child: Process exiting because it reached MaxConnectionsPerChild. Signaling the parent to restart a new child process.
[Thu Dec 07 08:59:49.328681 2017] [mpm_winnt:notice] [pid 1340:tid 628] AH00424: Parent: Received restart signal -- Restarting the server.
[Thu Dec 07 08:59:50.219352 2017] [ssl:warn] [pid 1340:tid 628] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Dec 07 08:59:50.250641 2017] [mpm_winnt:notice] [pid 1340:tid 628] AH00455: Apache/2.4.26 (Win32) OpenSSL/1.0.2l PHP/7.1.7 configured -- resuming normal operations
[Thu Dec 07 08:59:50.250641 2017] [mpm_winnt:notice] [pid 1340:tid 628] AH00456: Apache Lounge VC14 Server built: Jun 15 2017 12:39:41
[Thu Dec 07 08:59:50.250641 2017] [core:notice] [pid 1340:tid 628] AH00094: Command line: 'C:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Thu Dec 07 08:59:50.250641 2017] [mpm_winnt:notice] [pid 1340:tid 628] AH00418: Parent: Created child process 3264
[Thu Dec 07 08:59:51.078805 2017] [ssl:warn] [pid 3264:tid 540] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Dec 07 08:59:51.219445 2017] [ssl:warn] [pid 3264:tid 540] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Dec 07 08:59:51.250697 2017] [mpm_winnt:notice] [pid 3264:tid 540] AH00354: Child: Starting 1000 worker threads.

Re: Apache errors

PostPosted: 07. December 2017 22:48
by JJ_Tagy
I do not see any errors. What problems are you having?

Re: Apache errors

PostPosted: 08. December 2017 13:17
by matrixebiz
Hello, I was just concerned about;
1) Process exiting because it reached MaxConnectionsPerChild
2) server certificate does NOT include an ID

so was looking for optimal settings for my mpm_winnt_module

Re: Apache errors

PostPosted: 09. December 2017 05:12
by gsmith
matrixebiz wrote:Hello, I was just concerned about;
1) Process exiting because it reached MaxConnectionsPerChild
2) server certificate does NOT include an ID


1. You have MaxConnectionsPerChild set to 1000, so once it's served 1000 connections the child process gets shut down and a new one is started.

2. Unless you have a SSL certificate for www.example.com you are going to see this. As you can tell it is not fatal and can be ignored.