1

我是配置 Apache 的新手,我正在尝试优化我的 Apache 服务器。通读文档,我发现我应该使用Event MPM而不是Prefork MPM。到目前为止,一切都很简单,因为我只需要在00-mpm.conf中注释掉 Prefork 并取消注释 Event 。但是,当我重新启动 Apache 时,出现以下错误 -

AH00526: Syntax error on line 31 of /etc/httpd/conf.d/php.conf: Invalid command 'php_value', perhaps misspelled or defined by a module not included in the server configuration

挖掘更多信息,我发现 mod_php 不应该与 Event 一起使用。所以,我在 php.conf 中注释掉了php_value并且还在10 -php.conf中注释掉了LoadModule

我的网页不再加载,我意识到我应该使用php-fpm。但是,有关此的文档确实不清楚,我不确定如何使用它。我试过这个 -

    [root@ip-xxx-xx-xx-xxx ~]# yum install php-fpm
Loaded plugins: amazon-id, rhui-lb, search-disabled-repos
Resolving Dependencies
--> Running transaction check
---> Package php70w-fpm.x86_64 0:7.0.4-1.w7 will be installed
--> Processing Dependency: php70w-common(x86-64) = 7.0.4-1.w7 for package: php70w-fpm-7.0.4-1.w7.x86_64
--> Running transaction check
---> Package php70w-common.x86_64 0:7.0.4-1.w7 will be installed
--> Processing Conflict: php70w-common-7.0.4-1.w7.x86_64 conflicts php-common < 5.5.0
--> Finished Dependency Resolution
Error: php70w-common conflicts with php-common-5.4.16-36.el7_1.x86_64
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

我不确定如何继续,并且非常感谢任何有关此问题的帮助。谢谢!

4

1 回答 1

2

您将需要删除当前安装的 php,并且 php-common 将作为依赖项被卸载。

我可以确认一下,我刚刚做了这个,发现我卸载php的时候也去掉了很多相关的包,所以需要添加各种插件的相关php70w版本(如php70w-fpm、php70w-mysql、 ETC)

我还发现 roundcube 已卸载,但现在我有 PHP 7,我现在计划安装它的最新版本

于 2016-08-13T22:15:16.827 回答