반응형
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
반응형
'리눅스' 카테고리의 다른 글
Apache 서버에서 발생한 문제를 해결하는 방법 (1) | 2013.09.04 |
---|---|
mount 명령어 (1) | 2013.09.04 |
[Apache] apache(httpd-2.2.12) 설치 (1) | 2013.09.03 |
MySQL 5.0.45를 소스로부터 컴파일하여 설치하는 방법 (0) | 2013.09.03 |
파일 인코딩 변경하기(libiconv) (0) | 2013.09.03 |