« heartbeat Remote Denial of Service | Main | awstats 日志分析在跨月时的一个处理小技巧 »
August 30, 2006
关于 apache php 的编译和包管理注意事项
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2006/08/30/001070.html http://windtear.net/archives/2006/08/30/001070.html 关于 apache php 的编译和包管理注意事项 apache + php 编译 静态(不推荐) php: ./configure --with-apache=../apache_1.3.37 ...... apache: ./configure --activate-module=src/modules/php4/libphp4.a ...... httpd -l Compiled-in modules: http_core.c ...... mod_php4.c 动态(推荐) php: ./configure --with-apxs=/data/apache/bin/apxs ...... ./configure --with-apxs2=/data/apache/bin/apxs ...... httpd -l Compiled-in modules: http_core.c mod_so.c LoadModule php4_module modules/libphp4.so 做软件包(如rpm)的话 首先 build机器环境先做好 然后 spec要考虑全面 apache 有版本之分 1.3 2.0 2.2 apache 2 要考虑 mpm prefork 和 worker PHP 要考虑 modules 的安装目录和 apache 吻合 |
Posted by windtear at August 30, 2006 11:56 PM