來源:互聯網
上載者:User
關鍵字
Ubuntu
FastCGI
ISPConfig
PHP-FPM
PHP安裝
風信網(ithov.com)原創文章:ISPConfig 3.0.5 能夠在一台伺服器上使用多個PHP版本,以及為一個網站選擇最佳的PHP版本。 此功能適用于 PHP-FPM(PHP 5.3及以上)和 FastCGI(PHP 5.x版本)。 本教程介紹了如何在 HTTP://www.aliyun.com/zixun/aggregation/13835.html">Ubuntu 13.04 伺服器上建立 PHP 5.3 和 PHP 5.4 作為一個 PHP-FPM 和 Fast CGI版本。 這些PHP版本可以與ISPConfig中預設的PHP一起使用(通過apt安裝)。 共分為四篇,本文是第一篇。
1.初步說明
這裡我們將安裝最新的 PHP 5.3.24 和 PHP 5.4.14 版本,還展示了如何建立一些額外的PHP擴展,如APC,memcache,memcached 和 ioncube。
PHP-FPM 可以被使用於 Apache 和 nginx 伺服器,而 FastCGI 僅適用于Apache伺服器。
在 PHP 5.3 和 5.4 中 PHP-FPM 和 FastCGI 是相互排斥的,所以我們展示了兩種構建PHP的方法(PHP-FPM和FastCGI),但是你可以編譯PHP兩次,--enable-fpm 和 --enable-cgi 各一次 ,(須使用不用的目錄,PHP-FPM用 /opt/php-5.3.24,FastCGI用/opt/phpfcgi-5.3.24)。
2.建立 PHP 5.3.24 (PHP-FPM)
下載和提取 PHP 5.3.24:
mkdir /opt/php-5.3.24 mkdir /usr/local/src/php5-build cd /usr/local/src/php5-build wget HTTP://de.php.net/get/php-5.3 .24.tar.bz2/from/this/mirror -O php-5.3.24.tar.bz2 tar jxf php-5.3.24.tar.bz2 cd php-5.3.24/
安裝建立PHP5的必備程式:
apt-get install build-essential
apt-get build-dep php5
apt-get install libfcgi-dev libfcgi0ldbl libjpeg62-dbg libmcrypt-dev libssl-dev libc-client2007e libc-client2007e-dev
ln -s /usr/lib/libc-client.a /usr/lib/x86_64-linux-gnu/libc-client.a
需要使用以上最後的命令 來建立PHP --with-imap ,否則 ./configure 將停止且出現以下錯誤:
checking for crypt in -lcrypt... yes
configure: error: Cannot find imap library (libc-client.a). Please check your c-client installation.
root@server1:/usr/local/src/php5-build/php-5.3.24#