厚积薄发 发表于 2015-9-29 18:01:58

PHP5.3.3源代码编译安装(Linux CentOS 5.5)

PHP5.3.3源代码编译安装(Linux CentOS 5.5)#1. install libs needed
yum -y install libevent libevent-devel
yum -y install libxml2 libxml2-devel
yum -y install libmcrypt libmcrypt-devel
yum -y install curl-devel
yum -y install libpng-devel
yum -y install libtool-ltdl-devel

#2. create user and group for fpm(fastcgi process manager)
groupadd fpm
useradd --shell /sbin/nologin -g fpm fpm

#3. download, configure and install php5.3.3
wget http://www.php.net/distributions/php-5.3.3.tar.gz
tar zxvf php-5.3.3.tar.gz
cd php-5.3.3

./configure --prefix=/usr/local/php \
            --enable-fpm \
            --with-fpm-user=fpm \
            --with-fpm-group=fpm \
            --with-mysql=mysqlnd \
            --with-mysqli=mysqlnd \
            --with-pdo-mysql=mysqlnd \
            --without-pdo-sqlite \
            --without-sqlite3 \
            --without-sqlite \
            --with-mysql-sock=/tmp/mysql.sock \
            --with-curl \
            --enable-mbstring \
            --with-mhash \
            --with-mcrypt \
            --with-openssl \
            --with-gd \
            --enable-sockets \
            --with-gettext \
            --with-zlib \
            --enable-zip \
            --enable-soap \
            --with-xmlrpc

make && make install

#4. install apc
#5. install memcached
编译安装PHP5.3.3过程中出现的错误,及解决办法

错误: configure: error: libevent >= 1.4.11 could not be found


2解决: yum -y install libevent libevent-devel




1错误: configure: error: xml2-config not found. Please check your libxml2 installation.


2解决: yum -y install libxml2 libxml2-devel




1错误: configure: error: mcrypt.h not found. Please reinstall libmcrypt.


2解决: yum install libmcrypt libmcrypt-devel




1错误: configure: error: Please reinstall the libcurl distribution -


2      easy.h should be in <curl-dir>/include/curl/


3解决: yum -y install curl-devel


4</curl-dir>




1错误: If configure fails try --with-jpeg-dir=


2      configure: error: libpng.(a|so) not found.


3解决: yum -y install libpng-devel




1错误: /usr/bin/ld: cannot find -lltdl


2      collect2: ld returned 1 exit status


3解决: yum -y install libtool-ltdl-devel



PHP5.3.3源代码编译安装(Linux CentOS 5.5)
http://www.sqlstudy.com/article/php-5-3-3-compile-install-under-linux-centos-5.html
页: [1]
查看完整版本: PHP5.3.3源代码编译安装(Linux CentOS 5.5)