25 09 2014
기본설치
| 
					 1  | 
						yum -y install gcc gcc-c++ openssl-devel perl  | 
					
다운로드 http://httpd.apache.org/download.cgi#apache24 사이트에서
| 
					 1 2 3  | 
						root]# wget http://mirror.apache-kr.org//httpd/httpd-2.2.29.tar.gz root]#tar xvf httpd-2.2.29.tar.gz  | 
					
압축해제 필요한 파일 설치 Apache2.4.x 버전 설치 기존의 apache2.4.x 버전부터는 apr과 apr-util을 별로도 설치하여야 합니다. 하위버전에서는 설치파일에 포함되어 있었으나 버전 업이 되면서 삭제되어 configure를 실행하면 아래와 같은 에러메시지를 발생하면서 종료됩니다. Checking for APR… no Confgirue: error: APR not found. Please read the documentation 소스 수정
| 
					 1 2 3 4 5  | 
						root]# vi [경로]/httpd-2.4.10/server/mpm/prefork/prefork.c #ifndef DEFAULT_SERVER_LIMIT #define DEFAULT_SERVER_LIMIT 2048 #endif  | 
					
[…]