這篇文章主要介紹“CentOS下源碼編譯安裝PHP的方法”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“CentOS下源碼編譯安裝PHP的方法”文章能幫助大家解決問題。
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的紅山網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
首先需要安裝下面幾個(gè)安裝包,可以在cd-rom數(shù)據(jù)源里找到以下安裝包yum安裝
yum install perl* freetype libpng* libxm2 libxm2-devel curl curl-devel libjpeg*
手動(dòng)下載安裝 jpegsrc.v8c.tar libmcrypt-2.5.8.tar.gz
安裝 jpegsrc
# tar -xvzf jpegsrc.v8c.tar # cd jpeg-8c # ./configure --prefix=/usr/local/jpeg # make && make install
安裝 libmcrypt
# tar -xvzf libmcrypt-2.5.8.tar.gz # cd libmcrypt-2.5.8 # ./configure --prefix-/usr/local/libmcrypt # make && makeinstall
安裝php
# tar -xvzf php-5.5.10.tar.gz # cd php-5.5.10 # ./configure --prefix=/usr/local/php -with-apxs2=/usr/local/httpd/bin/apxs --with-curl --with-mcrypt --with-mbstring # make && make install
配置apache支持php
修改 /usr/local/apache/conf/httpd.conf文件
在loadmodule項(xiàng)后面加入:
loadmodule php5_module modules/libphp5.so
在
addtype application/x-httpd-php .php .phtml addtype application/x-httpd-php-source .phps addhandler application/x-httpd-php .php
重啟apache服務(wù)
執(zhí)行命令 # apachectl restart
測試php
在站點(diǎn)根目錄下編寫探針文件
# vi phpinfo.php
輸入:
瀏覽器地址欄輸入 http://192.168.23.131/phpinfo.php
顯示如下信息:說明php安裝成功。
關(guān)于“CentOS下源碼編譯安裝PHP的方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。