我正在尝试对同时有很多请求的网站使用mpm事件。 在apache中更改配置会产生错误,并且不会显示该页面 在centos 7和Apache 2.4上安装
更改配置/etc/httpd/conf/httpd.conf
1-注释
LoadModule mpm_event_module modules / mod_mpm_event.so
2-然后重新启动服务器
systemctl restart httpd
3-在/etc/httpd/conf/httpd.conf
上添加此配置<IfModule mpm_event_module>
StartServers 3
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxRequestWorkers 30
MaxConnectionsPerChild 1000
</IfModule>
是否缺少某些配置或安装了php模块才能使MPM EVENT正常工作?