본문 바로가기

리눅스

PHP 5.2.8을 소스 파일로부터 컴파일하여 설치하는 방법

반응형

PHP 5.2.8을 소스 파일로부터 컴파일하여 설치하는 방법

1. 필수 패키지 설치

sudo yum install -y gcc make libxml2 libxml2-devel openssl openssl-devel bison flex

2. 소스 다운로드

3. 소스 코드 압축 해제

4. 컴파일 및 설치

./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache2/bin/apxs --enable-sysvshm=yes --enable-sysvsem=yes --enable-debug=no --with-ttf --with-png-dir=/usr --with-zlib-dir --with-jpeg-dir=/usr --with-gdbm=/usr --enable-ftp --enable-mbstring --with-libexpat-dir=/usr --enable-sockets --enable-wddx --with-freetype-dir=/usr --enable-bcmath --enable-mbregex --enable-exif --with-gd --enable-gd-native-ttf --enable-calendar --with-openssl=/usr
make
make install

5. 구성 파일 생성

cp -p php.ini-dist /etc/php.ini

httpd.conf 파일 변경

vim httpd.conf
# LoadModule foo_module modules/mod_foo.so
LoadModule php5_module modules/libphp5.so

 AddType application/x-httpd-php .ph .php .php3 .inc .asp .html
 AddType application/x-httpd-php-source .phps

 DirectoryIndex index.html index.htm index.php

 

728x90
반응형