溫馨提示×

溫馨提示×

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

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

三、Ubuntu下編譯安裝PHP5.6.16

發(fā)布時間:2020-06-09 06:21:21 來源:網(wǎng)絡 閱讀:6966 作者:Edom_Huang 欄目:web開發(fā)

    在Ubuntu下搭建LNMP環(huán)境。編譯安裝mysql,nginx,php。最后在LNMP前提下安裝composer,并且安裝laravel框架。首先,第三步開始編譯安裝PHP5.6.16

1.先進入“/usr/local/src”文件夾中,接著鍵入

sudo wget http://cn2.php.net/distributions/php-5.6.16.tar.gz”回車,等待下載完畢。下載完畢后,執(zhí)行“sudo tar zxvf php-5.6.16.tar.gz”解壓文件。

三、Ubuntu下編譯安裝PHP5.6.16

2.

解壓后進入php目錄中,“cd php-5.3.8”回車,并執(zhí)行“sudo ./configure --prefix=/usr/local/server/php --with-config-file-path=/usr/local/server/php--enable-mbstring --enable-ftp --with-gd --with-jpeg-dir=/usr--with-png-dir=/usr --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-openssl-dir=/usr--with-openssl --with-pdo-mysql=mysqlnd --with-pear --enable-sockets--with-freetype-dir=/usr --enable-gd-native-ttf --with-zlib--with-libxml-dir=/usr --with-xmlrpc --enable-zip --enable-fpm --enable-fpm--enable-xml --enable-sockets --with-gd --with-zlib --with-iconv --enable-zip--with-freetype-dir=/usr/lib/ --enable-soap --enable-pcntl --enable-cli”。

如果出現(xiàn)以下錯誤1

三、Ubuntu下編譯安裝PHP5.6.16

說明缺少libxml2 library。需要安裝libxml2-dev包。執(zhí)行命令:sudo apt-get install libxml2-dev

接著繼續(xù)步驟2

如果還出現(xiàn)錯誤2

三、Ubuntu下編譯安裝PHP5.6.16

說明缺少libjpeg-dev庫。執(zhí)行命令:sudo apt-get -y install libjpeg-dev

接著繼續(xù)步驟2.

如果還出現(xiàn)錯誤3

三、Ubuntu下編譯安裝PHP5.6.16

說明缺少libpng12-dev庫。執(zhí)行命令:sudo apt-get install libpng12-dev

如果還出現(xiàn)錯誤4

三、Ubuntu下編譯安裝PHP5.6.16

說明缺少 libfreetype6-dev庫。執(zhí)行命令:sudo apt-get -y install libfreetype6-dev

接著繼續(xù)步驟2.

執(zhí)行“sudo ./configure --prefix=/usr/local/server/php --with-config-file-path=/usr/local/server/php--enable-mbstring --enable-ftp --with-gd --with-jpeg-dir=/usr--with-png-dir=/usr --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-openssl-dir=/usr--with-openssl --with-pdo-mysql=mysqlnd --with-pear --enable-sockets--with-freetype-dir=/usr --enable-gd-native-ttf --with-zlib--with-libxml-dir=/usr --with-xmlrpc --enable-zip --enable-fpm --enable-fpm--enable-xml --enable-sockets --with-gd --with-zlib --with-iconv --enable-zip--with-freetype-dir=/usr/lib/ --enable-soap --enable-pcntl --enable-cli”。

如果出現(xiàn)以下情況,則說明配置成功。

三、Ubuntu下編譯安裝PHP5.6.16

3. 再接著執(zhí)行命令“sudo make”,接著執(zhí)行:sudomake install。接著等待安裝完成。

三、Ubuntu下編譯安裝PHP5.6.16

三、Ubuntu下編譯安裝PHP5.6.16

4. 等待操作完成之后,復制啟動腳本。輸入“sudo cp ./sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm”回車,接著再執(zhí)行“sudo chmod+x /etc/init.d/php-fpm”。

三、Ubuntu下編譯安裝PHP5.6.16

5. 修改PHP-FPM配置文件,依次執(zhí)行“cd/usr/local/server/php/etc”、“sudo cp php-fpm.conf.default php-fpm.conf”、”sudo mvphp-fpm.conf.default php-fpm.conf.default.bak”。如下圖所示

三、Ubuntu下編譯安裝PHP5.6.16

6Sudo vimphp-fpm.conf 編輯配置文件。

①去掉第25行的注釋。

三、Ubuntu下編譯安裝PHP5.6.16

②確認以下紅色方框內(nèi)的四項為啟用狀態(tài),即去掉注釋。

三、Ubuntu下編譯安裝PHP5.6.16

保存并退出。

7.PHP-FPM啟動及退出分別使用命令“sudo /etc/init.d/php-fpmstart”與“sudo /etc/init.d/php-fpm stop”。

如果出現(xiàn)以下錯誤。

三、Ubuntu下編譯安裝PHP5.6.16

解決方法:找到以下兩項,修改為 user = edom group = edom,即將user和group改為自己的用戶和組。

三、Ubuntu下編譯安裝PHP5.6.16

三、Ubuntu下編譯安裝PHP5.6.16

重新啟動php-fpm。如圖所示則成功。

三、Ubuntu下編譯安裝PHP5.6.16

8.準備PHP的配置文件:

進入到php源文件目錄;cd/usr/local/src/php5.6.16

執(zhí)行命令:

sudo cp -f php.ini-production /usr/local/server/php/etc/php.ini

 

賦予權限:sudo chmod 644 /usr/local/server/php/etc/php.ini

9.執(zhí)行命令:php –v。如果查詢不到php版本信息,則執(zhí)行命令:sudo cp /usr/local/server/php/bin/php/usr/bin/php

接著執(zhí)行:php –v 即可查詢得到版本信息。

自此,php5.6.16編譯安裝完成。


向AI問一下細節(jié)

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

AI