使用 php 配置 apache 2.4 5.6.32 使用 linux 中的源配置
Configuring apache 2.4 with php 5.6.32 configuring with source in linux
我已经安装了 httpd 2.4,下载了 .tar.gz 并配置为:
./configure --with-apr=/tmp/apr-1.6.3 --with-apr-util=/tmp/apr-util-1.6.1 --enable-so && make && make install (my apr and apr-util are at /tmp location)
我还安装了 php 5.6.32,下载 tar.gz 并配置为:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --enable-fpm && make && make install
问题是我无法添加 fpm 处理程序,我该怎么办。
我应该按照 redhat developer guide or apache wiki for FPM
中的描述进行操作吗
提前感谢并纠正我,如果我做错了some/lots :)
当二进制包存在于各种存储库中时,为什么要尝试从源构建?
是的,PHP Configuration Tips 为您提供了使用 FPM 的正确方法(作为 SetHandler 方式中的 Apache wiki)。
链接的 howto 适用于 CentOS 7,但适用于使用 httpd24 软件集的 CentOS 6。
替代解决方案是使用第 3 方存储库,例如 "remi",请参阅 Wizard 说明。
我已经安装了 httpd 2.4,下载了 .tar.gz 并配置为:
./configure --with-apr=/tmp/apr-1.6.3 --with-apr-util=/tmp/apr-util-1.6.1 --enable-so && make && make install (my apr and apr-util are at /tmp location)
我还安装了 php 5.6.32,下载 tar.gz 并配置为:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --enable-fpm && make && make install
问题是我无法添加 fpm 处理程序,我该怎么办。
我应该按照 redhat developer guide or apache wiki for FPM
中的描述进行操作吗提前感谢并纠正我,如果我做错了some/lots :)
当二进制包存在于各种存储库中时,为什么要尝试从源构建?
是的,PHP Configuration Tips 为您提供了使用 FPM 的正确方法(作为 SetHandler 方式中的 Apache wiki)。
链接的 howto 适用于 CentOS 7,但适用于使用 httpd24 软件集的 CentOS 6。
替代解决方案是使用第 3 方存储库,例如 "remi",请参阅 Wizard 说明。