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
지금까지 아무런 문제가 없습니다. 이제 아파치를 구성하려고합니다.
./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 스크립트를 찾지 못했습니다"라는 오류가 발생합니다. 파일이 해당 위치에 있기 때문에 모르겠습니다. 내가 무엇을 잘못하고 있지? 감사!