接上一篇文章,centOS下編譯安裝apache
之前編譯安裝php時折騰了很久,很是惱火,現在終於理順了。整理一下。
1、安裝依賴檔
yum groupinstall "Development tools"
假如不安裝這些開發庫,到時候需要自己安裝好多東西
其他依賴檔
yum install xml2-devel gd-dep devel openssl-devel
假如提示
2、安裝php
wget http://us3.php.net/get/php-5.5.20.tar.gz/from/cn2.php.net/mirror
tar - xvf php-5.5.20.tar.gz
cd php-5.5.20
編譯,假如提示
configure: error: mcrypt.h not found. Please reinstall libmcryptrypt.h not found. Please reinstall libmcrypt
tar -zxvf libmcrypt-2.5.7.tar.gz
cd libfimcpt-2.5rypt-2.5.7.tar.gz
cd libfimcpt-2.5.577. =/usr/local/libmcrypt/
繼續編譯php,安裝到目錄/usr/local/php
. --prefix=/usr/local/php
--with-apxs2=/usr/local/apache/bin/apxs --disable-cli --enable-shared --with-libxml-dir --with-gd --with-openssl --enable-mbstring --with-mysqli --with-mysql --enable-opcache --enable-mysqlnd
--enable-zip --with-zlib-dir --with-pdo-mysql --with-jpeg-dir --with-freetype-dir --with-curl --without-pdo-sqlite --without-sqlite3 --with-mcrypt=/usr/local/libmcrypt/ makemake install
假如人品好,應該就安裝成功了。
cp php.ini-production /usr/local/php/lib/php.ini
3、與apache關聯
是否查看,安裝完php後,會開啟,假如沒有開啟則開啟)vim /usr/local/apache/conf/httpd.conf
LoadModule php5_module modules/libphp5.so
加入以下程式碼:
SetHandler application/x-httpd-php
更改一下程式碼:DirectoryIndex index.html index.shtml index.cgi index.php index.phtml index.php3 2行:
AddType application/x-httpd-php .php .php3 .phtml .inc
AddType application/x-httpd-php-source .phps
4、測試php
vim /usr/local/ache/acher/hts /info.php輸入碼:phpinfo();
?>
重啟apache
/etc/init.d/httpd restart
存取:127.0.0.1/info.php 即可看到php的安裝訊息,enjoy it!
參考
1、http://www.onepx.com/centos-php-55.html
2、http://blog.163.com/yxba_02/blog/static/1875576201272583532588/
以上就介紹了centOS下編譯安裝php,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。