首頁 > 軟體

Ubuntu 18.04 原始碼編譯安裝 PHP 7.3

2020-06-16 16:35:15

記錄在Ubuntu 18.04下原始碼編譯安裝 PHP 7.3的過程步驟。

0.下載PHP原始碼
首先需要從PHP官網下載PHP7.3.1的原始碼,儲存為php-7.3.1.tar.xz。
http://cn2.php.net/distributions/php-7.3.1.tar.xz
在上述檔案儲存的目錄中開啟終端,使用命令將其解壓,並使用cd進入解壓後的目錄
tar -xvJf ./php-7.3.1.tar.xz
cd php-7.3.1

1.安裝依賴
其次,需要安裝一些編譯PHP所需要的依賴
sudo apt update
sudo apt install gcc
sudo apt install make
sudo apt install openssl
sudo apt install curl
sudo apt install libbz2-dev
sudo apt install libxml2-dev
sudo apt install libjpeg-dev
sudo apt install libpng-dev
sudo apt install libfreetype6-dev
sudo apt install libzip-dev

2.設定PHP
在編譯前,需要對PHP進行設定,以供其生成對應的makefile檔案
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysqli --with-pdo-mysql --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --enable-ftp --with-gd --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts

設定成功後會出現如下字樣
+--------------------------------------------------------------------+
| License:                                                          |
| This software is subject to the PHP License, available in this    |
| distribution in the file LICENSE.  By continuing this installation |
| process, you are bound by the terms of this license agreement.    |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point.                            |
+--------------------------------------------------------------------+

Thank you for using PHP.

在這一步中,如果出現無法找到某個依賴的情況,可以嘗試使用sudo apt install來重新安裝一下沒有找到的依賴。

3.編譯並安裝PHP
在完成設定後,可以直接使用make來進行編譯,可以使用引數-j來指定編譯執行緒數量來多執行緒編譯
make -j4

編譯需要一段比較長的時間,請稍作等待,編譯成功後會輸出如下內容
Build complete.
Don't forget to run 'make test'.

然後執行以下命令進行安裝
sudo make install

執行完成後,PHP將會被安裝到/usr/local/php/。

4.驗證PHP
可以使用如下指令來輸出PHP的版本,來驗證是否正確安裝
/usr/local/php/bin/php -v

如果正確安裝,將會出現如下內容
PHP 7.3.1 (cli) (built: Jan 18 2019 20:11:04) ( ZTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.1, Copyright (c) 1998-2018 Zend Technologies

到這一步為止,PHP7.3.1便成功從原始碼編譯安裝了。

5.複製php.ini
編譯安裝後的目錄並不會有現成的php.ini,需要手動複製過去。
在解壓出來的原始碼目錄中,有供開發環境使用的php.ini-development和供生產環境使用的php.ini-production。
輸入命令來復製(以開發環境為例)
sudo cp php.ini-development /usr/local/php/etc/php.ini


IT145.com E-mail:sddin#qq.com