溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CentOS下源碼編譯安裝PHP的方法

發(fā)布時間:2022-05-07 16:19:08 來源:億速云 閱讀:125 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“CentOS下源碼編譯安裝PHP的方法”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“CentOS下源碼編譯安裝PHP的方法”文章能幫助大家解決問題。

首先需要安裝下面幾個安裝包,可以在cd-rom數(shù)據(jù)源里找到以下安裝包yum安裝

yum install perl* freetype libpng* libxm2 libxm2-devel curl curl-devel libjpeg*

手動下載安裝 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項后面加入:

loadmodule php5_module modules/libphp5.so

CentOS下源碼編譯安裝PHP的方法

在<ifmodule mime_module></ifmodule>之間加入

addtype application/x-httpd-php .php .phtml
addtype application/x-httpd-php-source .phps
addhandler application/x-httpd-php .php

CentOS下源碼編譯安裝PHP的方法

CentOS下源碼編譯安裝PHP的方法

重啟apache服務(wù)

執(zhí)行命令 # apachectl restart

測試php

在站點根目錄下編寫探針文件

# vi phpinfo.php

輸入:

<?php
phpinfo();
?>

CentOS下源碼編譯安裝PHP的方法

瀏覽器地址欄輸入 http://192.168.23.131/phpinfo.php

顯示如下信息:說明php安裝成功。

CentOS下源碼編譯安裝PHP的方法

關(guān)于“CentOS下源碼編譯安裝PHP的方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI