본문 바로가기
Apache

Apache 2.4.x 버전 컴파일 설치 시 apr, apr-util 를 따로 설치 할 필요가 없다.

by 씨엔아이소프트 2024. 5. 9.
반응형

Apache 2.4.x 버전 설치 시 apr, apr-util 를 따로 설치 할 필요가 없다.

 

apr, apr-util 소스 파일 다운로드 후 httpd 소스파일 밑에 srclib 경로에 버전 명을 빼고 apr, apr-util 로 이름을 변경하여 옮겨준다.

wget https://archive.apache.org/dist/httpd/httpd-2.4.9.tar.gz
tar -xzf httpd-2.4.9.tar.gz
cd httpd-2.4.9

그리고 apache configure 할때 " --with-included-apr " 옵션을 넣어주면 자동으로 인식해서 설치한다.

cd srclib
wget https://archive.apache.org/dist/apr/apr-1.5.0.tar.gz
wget https://archive.apache.org/dist/apr/apr-util-1.5.3.tar.gz
tar -xzf apr-1.5.0.tar.gz
tar -xzf apr-util-1.5.3.tar.gz
mv apr-1.5.0 apr
mv apr-util-1.5.3 apr-util
cd ..

Apache HTTP Server를 컴파일하고 설치합니다.

./configure --prefix=/usr/local/apache2 --with-included-apr --enable-so --enable-ssl --with-mpm=event
make
sudo make install

 

apr, apr-util 압축 해제 후 httpd 소스 파일 아래 srclib 디렉토리로 이동

출처: https://siron89.tistory.com/29 [박세혁(siron89):티스토리]

반응형

댓글