Why cannot Apache handle multiple requests at the same time?

后端 未结 8 593
执笔经年
执笔经年 2021-01-31 21:23

I have AMPPS installed.

My Apache server cannot handle multiple php requests at once (for example if I call localhost/script.php multiple times, they are pr

8条回答
  •  再見小時候
    2021-01-31 21:52

    I encountered a similar problem. Multiple requests kept hanging randomly while connecting to the server.

    Tried changing the mpm configurations, with no use.

    Finally this one seems to solve the problem for me. (from https://serverfault.com/a/680075)

    AcceptFilter http none
    EnableSendfile Off 
    EnableMMAP off 
    

提交回复
热议问题