본문 바로가기
Linux/Apache

리눅스 Apache 2.4 설치

by 준섭이 2020. 6. 3.
728x90

#### 리눅스(RedHat계열)에 Apache 2.4 설치

 

1. 패키지 설치

yum install -y wget gcc gcc-c++ openssl openssl-devl pcre-devel

 

2. apr, apr-util, apache 다운로드

wget http://www.atblog.co.kr/file/package/apr-1.5.1.tar.gz

wget http://www.atblog.co.kr/file/package/apr-util-1.5.4.tar.gz

wget mirror.navercorp.com/apache//httpd/httpd-2.4.43.tar.gz

  ### apache download의 경우, 버전이 바꾸면 주소가 안맞을 수 있으니, 직접 홈페이지에서 받으셔야 합니다.

 

3. apr 설치

tar zxvf apr-1.5.1.tar.gz

cd apr-1.5.1

./configure

make

make install

** libtool 에러시, cp -arp libtool libtoolT 후, configure 부터 다시 하면 됩니다.

 

4. apr-util 설치

tar zxvf apr-util-1.5.4.tar.gz

cd apr-util-1.5.4

./configure --with-apr=/usr/local/apr

make

make install

 

5. apache 설치

tar zxvf httpd-2.4.43.tar.gz

cd httpd-2.4.43

** mpm 설정 하실 경우 : vi server/mpm/prefork/prefork.c에서 #define DEFAULT_SERVER_LIMIT 2048 리밋 수정해주고 configure 하시면 됩니다. worker 쪽 하실 경우, server/mpm/worker/worker.c에서 수정 하시면 됩니다.

./configure \

--prefix=/usr/local/apache \

--enable-rule=SHARED_CORE \

--enable-modules=all \

--enable-rewire \

--enable-mods-shared=most \

--enable-so \

--enable-ssl \

--enable-cgi \

--with-mpm=prefork \

--with-pcre

make

make install

cd /usr/local/apache/bin

cp /usr/local/apache/bin/apachectl /etc/init.d/httpd

 

6. apache 시작

/etc/init.d/httpd start

#### 서비스 시작 후, 웹페이지 뜨는지 확인.

 

 

 

 

 

 

칙칙한 IT글엔, Redvelvet

'Linux > Apache' 카테고리의 다른 글

리눅스 tomcat 설치  (0) 2020.06.04
[CentOS] Apache + Tomcat 연동  (3) 2013.04.24
[CentOS] yum 을 이용한 간단한 Apache 설정  (0) 2013.02.19
CentOS 6.3 Apache 설정  (0) 2013.01.22