系统相关
首页 > 系统相关> > 如何在Ubuntu 14.04上使用线程安全的PHP启用事件MPM Apache 2.4?

如何在Ubuntu 14.04上使用线程安全的PHP启用事件MPM Apache 2.4?

作者:互联网

我升级到Ubuntu Server 14.04,期望默认的apache安装将使用新的事件MPM,但我发现旧的内存吃prefork.

我已经在Arch Linux中成功设置了事件MPM,但我没有在Ubuntu上这样做.我一直在:

Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe. You need to recompile PHP

我已经安装了php-fpm,并配置了apache2来使用它,但由于apache2的配置文件在Ubuntu上有所不同,我不太确定我是否在正确的地方做它.

关于如何使PHP线程安全的任何想法,所以我可以使用apache2 event-mpm? (当然,无需手动重新编译php)

解决方法:

要禁用事件MPM,你可以执行sudo a2dismod mpm_event,然后启用prefork,你应该执行sudo a2enmod mpm_prefork.

最后重启apache:

sudo service apache2 restart

标签:php,server,apache2,14-04
来源: https://codeday.me/bug/20190807/1612426.html