설치 버전 apache 2.2.11 mysql 5.1.30 php 5.3.28 1. apache 설치 apache설치할 디렉토리 미리 생성 mkdir -p /usr/local/apache 소스설치 tar xvfz httpd-2.2.11.tar.gz cd httpd-2.2.11 ./configure --prefix=/web/httpd2 --enable-module=so --enable-mods-shared=most --with-ssl make; make install vi /etc/ld.so.conf 아래 두줄 추가 추가한 명령 적용하기 위해 ldconfig 실행 아파치 시작스크립트 파일 /etc/init.d에 복사 cp /usr/local/apache/bin/apachectl /etc/init.d/apa..