我正在尝试在Red Hat上安装Apache。这是一个我无法完全控制的系统(我的系统管理员给了我一个工作目录)。所以除了Apache 2.4.7之外,我还下载,配置并安装了APR,APR-Util和PCRE。
我为APR运行了以下内容:
./configure --prefix=/u01/app/apache/apr/
make
make install
收到警告以记住要运行
libtool --finish /usr/local/apr/lib
我把它改为
libtool --finish /u01/app/apache/apr/lib/
它说它在那个位置安装了库
同样,对于APR-Util,运行:
./configure --prefix=/u01/app/apache/apr-util/ --with-apr=/u01/app/apache/apr/bin
make
make install
告诉我,库安装在/ u01 / app / apache / apr-util // lib
中接下来,PCRE:
./configure --prefix=/u01/app/apache/pcre/ --with-apr=/u01/app/apache/apr/bin --with-apr-util=/u01/app/apache/apr-util/bin
make
make install
到目前为止,没有问题。现在我尝试配置apache
./configure --prefix=/u01/app/apache/apache247/ --with-apr=/u01/app/apache/apr/bin --with-apr-util=/u01/app/apache/apr-util/bin --with-pcre=/u01/app/apache/pcre/bin
它找到了APR和APR-Util,但当然,我收到错误“未在/ u01 / app / apache / pcre / bin找到pcre-config脚本”。为什么,我不知道,因为该位置的文件存在。我究竟做错了什么?谢谢!