logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Apache 2.4 Stops Serving Request
Author
exdox77



Joined: 03 Apr 2016
Posts: 1
Location: Columbus, Ohio

PostPosted: Sun 03 Apr '16 17:23    Post subject: Apache 2.4 Stops Serving Request Reply with quote

This is something new, Apache is running fine as server on a Windows Server 2012. There is plenty of RAM and CPU and this is the only thing this server does, is an Apache server.

I can restart the service and it will run fine for a little bit then stop serving pages on all sites. I have messed with the worker threads to find a fine line but still having issues.

Currently settings in httpd-mpm.conf file

Code:
<IfModule mpm_prefork_module>
    StartServers             10
    MinSpareServers          10
    MaxSpareServers         20
    MaxRequestWorkers      250
    MaxConnectionsPerChild   3000
</IfModule>


At this point I am not sure what is going on and have tried several suggestions from various websites.

Specs of Server: Windows 2012 R2 VM 2 GB of RAM 1 GB available Running on an SSD storage

This server connects to a MySQL database on the same network as well, there is not latency between the servers.
Back to top
jraute



Joined: 13 Sep 2013
Posts: 188
Location: Rheinland, Germany

PostPosted: Mon 04 Apr '16 9:10    Post subject: Reply with quote

When you have hangs, slow traffic and/or when having in your log entries like Asynchronous AcceptEx failed. You can try the following settings:

AcceptFilter http none
AcceptFilter https none
EnableSendfile off
EnableMMAP off
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Mon 04 Apr '16 11:43    Post subject: Reply with quote

Quote:
IfModule mpm_prefork_module


prefork is only on linux. That settings will never be applied. Wink

Most used WinNT ( Windows) MPM settings are

Code:
<IfModule mpm_winnt_module>
    ThreadsPerChild      150
    MaxConnectionsPerChild    0
</IfModule>
Back to top


Reply to topic   Topic: Apache 2.4 Stops Serving Request View previous topic :: View next topic
Post new topic   Forum Index -> Apache