반응형
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
출처: https://siron89.tistory.com/29 [박세혁(siron89):티스토리]
반응형
'Apache' 카테고리의 다른 글
CentOS 7 APM 컴파일 설치 (php 5.2.x) (0) | 2024.05.10 |
---|---|
아파치 설치 중 error: pcre-config for libpcre not found (0) | 2024.05.09 |
OpenSSL 1.0.2k-fips 업그레이드 (1) | 2024.05.01 |
아파치 톰캣 ssl 인증서 설치 (0) | 2023.08.28 |
Apache SSL 설치했는데 기본 localhost.crt 파일이 없어요 (0) | 2023.07.27 |
댓글