【安裝PHP】如何在openSUSE42.1下編譯安裝PHP7

首先推薦一篇文章PHP 7 Release Date Arrived: Will Developers Adopt PHP 7? - PHP Classes blogphp

裏面說到是否會去使用PHP7,就我的而言,我是堅決果斷地使用的,可是生產環境就不是我說了算,因此只能本身在本身的開發環境裏更新PHP的版本。那麼,你呢?html

筆者使用的是Linux的openSUSE42.1發行版,Yast裏面尚未PHP7的安裝包,因而乎只能本身手動編譯安裝了。做爲一個PHP開發者,我是很是但願可以學會編譯安裝PHP7的,以前試過幾回,可是每次安裝都要上網找各類資料,因而乎,此次安裝成功後就想把本身的安裝過程以及遇到的問題記錄下來,方便之後查閱和分享給須要的人。mysql

下載源碼並解壓

進入正題,要編譯安裝PHP7,首先固然要下載PHP7的源碼。你能夠到github上clone,也能夠到PHP官網下載。下載後解壓到/usr/local/src目錄,並將目錄重命名爲php7。進入目錄。nginx

配置編譯參數

生成配置文件

./buildconf

配置

./configure \
--prefix=/usr/local/php7 \
--exec-prefix=/usr/local/php7 \
--bindir=/usr/local/php7/bin \
--sbindir=/usr/local/php7/sbin \
--includedir=/usr/local/php7/include \
--libdir=/usr/local/php7/lib/php \
--mandir=/usr/local/php7/php/man \
--with-config-file-path=/usr/local/php7/etc \
--with-mysql-sock=/var/run/mysql/mysql.sock \
--with-mcrypt=/usr/include \
--with-mhash \
--with-openssl \
--with-mysqli=shared,mysqlnd \
--with-pdo-mysql=shared,mysqlnd \
--with-gd \
--with-iconv \
--with-zlib \
--enable-zip \
--enable-inline-optimization \
--disable-debug \
--disable-rpath \
--enable-shared \
--enable-xml \
--enable-bcmath \
--enable-shmop \
--enable-sysvsem \
--enable-mbregex \
--enable-mbstring \
--enable-ftp \
--enable-gd-native-ttf \
--enable-pcntl \
--enable-sockets \
--with-xmlrpc \
--enable-soap \
--without-pear \
--with-gettext \
--enable-session \
--with-curl \
--with-jpeg-dir \
--with-freetype-dir \
--enable-opcache \
--enable-fpm \
--disable-cgi \
--with-fpm-user=nginx \
--with-fpm-group=nginx \
--without-gdbm \
--disable-fileinfo

參數說明
prefix PHP7安裝的根目錄
with-config-file-path PHP7的配置文件目錄git

執行完上面的配置命令後的結果以下圖所示:github

安裝PHPconfigure結果

執行上面命令的過程當中會遇到一些依賴缺乏的提示,下面列出我遇到的依賴問題:sql

錯誤:api

configure: error: xml2-config not found. Please check your libxml2 installation.session

解決:php7

zypper install libxml2-devel

錯誤:

configure: WARNING: unrecognized options: --with-mysql

解決:

取消這個選項,這個選項是不存在的

錯誤:

configure: error: jpeglib.h not found.

解決:

zypper install libjpeg-devel

錯誤:

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

解決:

zypper install libmcrypt-devel

錯誤:

configure: error: Cannot find pspell

解決:

取消該選項

錯誤:

checking for recode support... yes
configure: error: Can not find recode.h anywhere under /usr /usr/local /usr /opt.

解決:

zypper install librecode-devel

總的來講,在配置的時候遇到沒有的就打開Yast搜一下,若是有的話就安裝,而後從新編譯看還須要那些,若是在Yast找不到,那就上網找一下Google。

編譯和安裝PHP7

make && make install

其中,make以後能夠選擇make test。只是一個可選步驟,不執行不知道有什麼問題,不過筆者暫時還沒遇到。

查看安裝成功後的PHP7目錄

編譯安裝成功後,查看PHP7的安裝目錄ls /usr/local/php7

PHP7安裝目錄

設置PHP7的配置文件

cp /usr/local/src/php7/php.ini-production /usr/local/php7/etc/php.ini
cp /usr/local/src/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf
cp /usr/local/php7/etc/php-fpm.d/www.conf.default /usr/local/php7/etc/php-fpm.d/www.conf

添加環境變量

在/etc/profile 文件的最後一行加上

`export PATH=/usr/local/php7/bin:/usr/local/php7/sbin:$PATH`

而後執行source /etc/profile

設置PHP日誌目錄和php-fpm進程文件(php-fpm.sock)目錄

mkdir -p /var/log/php-fpm/ && mkdir -p /var/run/php-fpm && cd /var/run/ && chown -R nginx:nginx php-fpm

將PHP設置爲開機啓動

chmod +x /etc/init.d/php-fpm
chkconfig php-fpm on

能夠用chkconfig命令查看開機啓動服務列表。

啓動PHP服務

service php-fpm start

經過ps aux | grep 'php'查看PHP是否啓動成功

PHP啓動

至此,PHP7就安裝成功了,你也開始使用PHP7吧!

相關文章
相關標籤/搜索