Linux WEB

Apache / PHP 최신버전 설치하기

2015.09.25 16:41

호스트웨이 조회 수:16487

# Apache / PHP 최신버전 설치 내용 입니다.
간략한 conf 파일 수정이 있으니 사용자의 내용에 맞게 수정하시면 될 것 같습니다.

1. Version 정보

            구분            

                      Version                      

Apr

1.5.2 

Apr-Util 

1.5.4 

Apache 

2.4.16 

PHP 

5.6.13


 - 설치에 앞서 설치를 진행하는 기본디렉토리

         >   /usr/local/src

- 위의 디렉토리에 작업한 기준 입니다. 디렉토리를 꼭 확인하세요.


2. Apache 설치하기
 - Apr 설치
 - 다운로드
         >   wget http://apache.mirror.cdnetworks.com/apr/apr-1.5.2.tar.gz
 - 압축해제
         >   tar xvfz apr-1.5.2.tar.gz
 - 압축해제 디렉토리 접근
         >   cd apr-1.5.2
 - configure 및 make
./configure


make && make install 

 
 - Apr-util 설치
 - 다운로드
         >   wget http://apache.mirror.cdnetworks.com/apr/apr-1.5.4.tar.gz
 - 압축해제
         >   tar xvfz apr-util-1.5.4.tar.gz
 - 압축해제 디렉토리 접근
         >   cd apr-util-1.5.4
 - configure 및 make
./configure --with-apr=/usr/local/apr


make && make install 

 
 - Apache 설치
 - 다운로드
         >   wget http://mirror.apache-kr.org/httpd/httpd-2.4.16.tar.gz
 - 압축해제
         >   tar xvfz httpd-2.4.16.tar.gz
 - 압축해제 디렉토리 접근
         >   cd httpd-2.4.16
 - pcre 설치
         >   yum install pcre-devel -y
 - configure 및 make
./configure --prefix=/usr/local/apache2 \
--with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config \
--enable-module=so \
--enable-mods-shared=all

make && make install 



 - Apache 설치 확인
/usr/local/apache2/bin/apachectl -V
Server version: Apache/2.4.16 (Unix)
Server built:   Sep 25 2015 15:32:40
Server's Module Magic Number: 20120211:47
Server loaded:  APR 1.5.2, APR-UTIL 1.5.4
Compiled using: APR 1.5.2, APR-UTIL 1.5.4
Architecture:   64-bit
Server MPM:     event
  threaded:     yes (fixed thread count)
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT="/usr/local/apache2"
 -D SUEXEC_BIN="/usr/local/apache2/bin/suexec"
 -D DEFAULT_PIDLOG="logs/httpd.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="conf/mime.types"

 -D SERVER_CONFIG_FILE="conf/httpd.conf" 


3. PHP 설치

 - 다운로드

         >   wget -O php-5.6.13.tar.gz wget http://kr1.php.net/get/php-5.6.13.tar.gz/from/this/mirror

 - 압축해제

         >   tar xvfz php-5.6.13.tar.gz

 - 압축해제 디렉토리 접근

         >   cd php-5.6.13

 - configure 및 make

./configure --prefix=/usr/local/php \

   --with-apxs2=/usr/local/apache2/bin/apxs \

   --with-config-file-path=/usr/local/apache2/conf \

   --with-gd \

   --with-zlib \

   --with-iconv \

   --with-png-dir \

   --with-jpeg-dir \

   --with-freetype-dir \

   --with-libxml-dir \

   --with-mcrypt \

   --with-openssl \

   --with-curl \

   --with-imap-ssl \

   --with-kerberos \

   --enable-mbstring \

   --enable-calendar \

   --enable-sockets \

   --enable-ftp \

   --disable-debug \

   --disable-maintainer-zts 


make && make install


 - php.ini 복사

         >   cp php.ini-production /usr/local/apache2/conf/php.ini

 - php 버전 확인

         >   /usr/local/php/bin/php -v


4. conf 파일 수정

 - httpd.conf 수정

 - vi /usr/local/apache2/conf/httpd.conf (수정전에 httpd.conf 기본파일은 꼭 백업해주세요. ex : httpd.conf_ori)


변경전

변경후

#ServerName www.example.com:80

ServerName 127.0.0.1

<Directory />

    AllowOverride none

    Require all denied

</Directory> 

<Directory />

    AllowOverride none

    Require all granted

</Directory>

 <IfModule dir_module>

    DirectoryIndex index.html

</IfModule>

 <IfModule dir_module>

    DirectoryIndex index.html

</IfModule>

AddType application/x-compress .Z

AddType application/x-gzip .gz .tgz

AddType application/x-compress .Z

AddType application/x-gzip .gz .tgz

AddType application/x-httpd-php .php .inc .lib .html .htm

AddType application/x-httpd-php-source .phps

#Include conf/extra/httpd-vhosts.conf

Include conf/extra/httpd-vhosts.conf

#LoadModule rewrite_module modules/mod_rewrite.so

LoadModule rewrite_module modules/mod_rewrite.so

User daemon

Group daemon

User 유저계정

Group 유저그룹


- php.ini 수정

- vi /usr/local/apache2/conf/php.ini (수정전 php.ini 파일은 꼭 백업해두세요 ex : php.ini_ori)

변경전

변경후

short_open_tag = Off

short_open_tag = On

;date.timezone =

date.timezone = Asia/Seoul

error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

error_reporting = E_ALL & ~E_NOTIC

;error_log = php_errors.log

error_log = /usr/local/apache2/logs/php_errors.log


위와 같이 수정하시면 되겠습니다.

번호 제목 글쓴이 날짜 조회 수
43 PHP 컴파일시 /usr/bin/ld: cannot find -lltdl 오류 호스트웨이 2012.07.13 12544
42 [Apache] Image 관련 Log 남기지 않기 호스트웨이 2012.07.13 9705
41 PHP 업로드 파일 용량 제한 설정 호스트웨이 2012.07.06 10042
40 SSL config error 조치사항 호스트웨이 2012.06.29 9631
39 Apache2.4.x 버전 설치 호스트웨이 2012.06.22 23693
38 PHP-5.3 버전 이상에서 Deprecated 에러 발생시 처리 방법 호스트웨이 2012.06.22 14713
37 PHP 속도 향상을 위한 eAccelerator 설치 호스트웨이 2012.06.15 11264
36 ZendOptimizer 3.3.9 설치 file 호스트웨이 2012.06.01 17546
35 웹페이지에 사용자 인증 사용하기 호스트웨이 2012.05.18 8972
34 apache ssl 시작시 오류 메세지 호스트웨이 2012.05.11 10054
33 mod_GeoIP를 이용한 국가 IP 확인 및 국가별 접속 제한 호스트웨이 2012.05.04 19934
32 apache에서 cgi를 사용하기 위한 설정 방법 호스트웨이 2012.04.27 20125
31 Zend Guard Loader 설치 호스트웨이 2012.04.20 17811
30 PHP에서 MS-SQL 서버를 연동하기 위한 방법 호스트웨이 2012.04.13 25303
29 Linux log 분할 방법 (logrotate) 호스트웨이 2012.04.06 12587
28 APM 및 OS 버전 확인 하는 방법 호스트웨이 2012.03.30 13982
27 phpize를 이용하여 모듈 추가 file 호스트웨이 2012.03.15 15582
26 mod_rewrite 모듈 설치 및 기본 사용법 sylee 2009.07.02 38417
25 아파치2 에서 mod_cband 사용법 sylee 2009.06.05 24553
24 register_globals 옵션에 따른 변수 전달 jook 2009.02.19 34709