Apache 시작하기
설치 설치 과정은 따로 사내 문서에 없어서 공식 문서를 보면서 진행했다. 소스 코드 다운로드 및 압축 해제 wget https://dlcdn.apache.org/httpd/httpd-2.4.54.tar.gz gzip -d httpd-2.4.54.tar.gz tar xvf httpd-2.4.54.tar 다운로드 파일 경로는 아래 링크에서 확인이 가능하다. https://httpd.apache.org/download.cgi 빌드 cd httpd-2.4.54.tar ./configure 만약 설치 경로를 변겅하고 싶다면, -prefix 옵션으로 변경이 가능하다. (기본값 ‘/usr/local/apache2’) https://httpd.apache.org/docs/trunk/programs/configure.html 트러블슈팅 빌드를 시도하면 APR not found, APR-util not found, pcre-config for libpcre not found 등의 문제가 발생한다. 아래 링크를 통해서 해결할 수 있었다....