您好,登錄后才能下訂單哦!
php官方下載地址: http://www.php.net/downloads.php
下載php:
[rot@localhost httpd-2.2.16]# cd /usr/local/src
[root@localhost src]# wget http://124.202.164.14/files/203100000942750A/cn2.php.net/distributions/php-5.6.27.tar.gz
解壓:
[root@localhost src]# tar zxf php-5.6.27.tar.gz
配置編譯參數:
[root@localhost src]# cd php-5.6.27
[root@localhost php-5.6.27]# ./configure \
--prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-config-file-path=/usr/local/php/etc \
--with-mysql=/usr/local/mysql \
--with-libxml-dir \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-iconv-dir \
--with-zlib-dir \
--with-bz2 \
--with-openssl \
--with-mcrypt \
--enable-soap \
--enable-gd-native-ttf \
--enable-mbstring \
--enable-sockets \
--enable-exif \
--disable-ipv6
--with-apxs2=/usr/local/apache2/bin/apxs \ 這個工具是自動的去幫助我們去安裝擴展模塊的Apache有靜態與動態,我們去安裝動態模塊的時候,就可能需要這個工具,他幫我們自動的去安裝擴展模塊
--with-mysql=/usr/local/mysql說明PHP也是依賴我們的MySQL
在這一步,遇到如下錯誤:
configure: error: xml2-config not found. Please check your libxml2 installation.
解決辦法是:
yum install -y libxml2-devel
還有錯誤:
configure: error: Cannot find OpenSSL's <evp.h>
解決辦法是:
yum install -y openssl openssl-devel
錯誤:
checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution
解決辦法:
yum install -y bzip2 bzip2-devel
錯誤:
configure: error: png.h not found.
解決辦法:
yum install -y libpng libpng-devel
錯誤:
configure: error: freetype.h not found.
解決辦法:
yum install -y freetype freetype-devel
錯誤:
configure: error: jpeglib.h not found.
解決辦法:
yum -y install libjpeg-turbo-devel
錯誤:
configure: error: mcrypt.h not found. Please reinstall libmcrypt.
解決辦法:
yum list |grep -i mcrypt
yum install -y libmcrypt-devel
因為centos6.x 默認的yum源沒有libmcrypt-devel 這個包,只能借助第三方yum源。
首先現在如下rpm包,然后安裝對應的rpm包
centos5 32位epel源下載地址: www.lishiming.net/data/p_w_upload/forum/epel-release-5-4_32.noarch.rpm
64位下載地址: www.lishiming.net/data/p_w_upload/forum/epel-release-5-4_64.noarch.rpm
centos6
32位epel yum源下載地址: http://www.lishiming.net/data/p_w_upload/forum/epel-release-6-8_32.noarch.rpm
64位下載地址: www.lishiming.net/data/p_w_upload/forum/epel-release-6-8_64.noarch.rpm
編譯:
[root@localhost php-5.6.27]# make
安裝:
[root@localhost php-5.6.27]# make install
查看
ls /usr/local/apache2/modules 多了一個模塊 libphp5.so文件
可執行文件
/usr/local/php/bin/php -m 查看到它的靜態模塊
/usr/local/php/bin/php -i 相關配置
拷貝配置文件:
[root@localhost php-5.6.27]# cp php.ini-production /usr/local/php/etc/php.ini
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。