차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
apache_설치 [2015/03/27 00:50] – [Step 2 : httpd 설치] zzung | apache_설치 [2016/08/25 00:55] (현재) – zzung | ||
---|---|---|---|
줄 19: | 줄 19: | ||
==== Step 1 : httpd 다운로드 ==== | ==== Step 1 : httpd 다운로드 ==== | ||
Apache(httpd) Download URL : http:// | Apache(httpd) Download URL : http:// | ||
- | DownLoad File **httpd-2.4.12.tar.gz** | + | DownLoad File **httpd-2.4.12.tar.gz** |
+ | APR(APR-Util) Download URL : http:// | ||
+ | DownLoad File **apr-1.5.1.tar.gz** http:// | ||
+ | DownLoad File **apr-util-1.5.4.tar.gz** http:// | ||
+ | |||
==== Step 2 : httpd 설치 ==== | ==== Step 2 : httpd 설치 ==== | ||
* httpd-2.4.12.tar.gz 파일 Apache Server Upload | * httpd-2.4.12.tar.gz 파일 Apache Server Upload | ||
줄 50: | 줄 53: | ||
=== httpd 설치 === | === httpd 설치 === | ||
+ | * httpd.tar.gz 파일을 서버로 업로드 후 해당 파일 압축을 푼다. | ||
<code vim> | <code vim> | ||
- | // 압축을 푼 폴더로 이동한다. | ||
[root@Apache Downloads]# cd httpd-2.4.12 | [root@Apache Downloads]# cd httpd-2.4.12 | ||
줄 69: | 줄 72: | ||
</ | </ | ||
+ | * httpd congifure 명령어를 이용하여 설치 | ||
+ | <code vim> | ||
+ | [root@Apache httpd-2.4.12]# | ||
+ | </ | ||
+ | * configure 명령어로 설치시 나타날 수 있는 오류 | ||
+ | <WRAP center box 100%> | ||
+ | configure: error: Bundled APR requested but not found at ./srclib/. Download and unpack the corresponding apr and apr-util packages to ./srclib/. \\ | ||
+ | ⇒ http:// | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | * make && make install | ||
+ | <code vim> | ||
+ | [root@Apache httpd-2.4.12]# | ||
+ | </ | ||
==== Step 3 : httpd 정보 확인 ==== | ==== Step 3 : httpd 정보 확인 ==== | ||
+ | <code vim> | ||
+ | [root@localhost ~]# rpm -qa | grep httpd | ||
+ | [root@localhost ~]# httpd -version | ||
+ | </ | ||