红联Linux门户
Linux帮助

Ubuntu下安装php7后无法启动Apache

发布时间:2016-06-12 09:57:56来源:linux网站作者:yangxunwu1992

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


由于Apache的运行模式和非线程安全版的php不兼容,所以是需要更改Apache的工作模式。Apache是通过Ubuntu下:

apt-get install apache2

安装的,所以在/etc/apache2/目录下有两个文件夹,一个mods-avaiable一个mods-enabled.


将mods-enabled目录下的mpm-event的conf和load链接删除。重建prefork链接:

cd mods-enabled/
ln -s  ../mods-available/mpm_prefork.* .

重启apache2,ok了。

Ubuntu下安装php7后无法启动Apache


本文永久更新地址:http://www.linuxdiyf.com/linux/21443.html