PHP7在開發機上的安裝使用之旅

2020-07-16 10:06:14
下載7:

$ cd
$ mkdir php7test
$ cd php7test
$ wget http://cn2.php.net/get/php-7.0.7.tar.gz/from/this/mirror
$ tar -zxvf php-7.0.7.tar.gz
$ cd php-7.0.7

安裝一些依賴:

$ yum -y install libjpeg libpng freetype libxml2 libxml2-devel openssl openssl-devel curl-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel curl-devel libxslt-devel lib2 lib2-devel

設定configure

$ ./configure --prefix=/data/php7 --with-config-file-path=/data/php7/etc --with-config-file-scan-dir=/data/php7/etc/php.d --with-mcrypt=/usr/include --enable-mysqlnd --with-mysqli --with-pdo-mysql --enable-fpm --with-fpm-user=xxxxxxxxxx --with-fpm-group=xxxxxxxxxx --with-gd --with-iconv --enable-xml --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-mbregex --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-curl --with-jpeg-dir --with-freetype-dir --with-zlib --enable-bcmath --enable-sockets

然後:

$ make
$ make install

預設安裝好之後,你會發現/data/php7/etc下面沒有php.ini檔案,這個去哪裡要呢?在php7的原始碼安裝包都有。

進入原始碼安裝包的目錄

$ cd 
$ cd php7test/php-7.0.7
$ ls

可以看到有兩個php.ini-xxx的檔案

$ cp php.ini* /data/php7/etc/
$ cp php.ini-production /data/php7/etc/php.ini

啟用php-fpm

先設定config檔案

$ cd /data/php7/etc
$ cp php-fpm.conf.default php-fpm.conf
$ cp php-fpm.d/www.conf.default php-fpm.d/www.conf

在編譯之前./configure的時候,我們都已經確定了一些設定,比如執行fpm的使用者和使用者組之類的,所以預設設定應該不會存在路徑問題和許可權問題。

搞定php-fpm的服務載入

我們希望使用service php-fpm start|stop|restart這些操作來實現服務的重新啟動,但沒有像nginx那麼複雜,php編譯好之後,給我們提供了一個php-fpm的程式,不需要我再編寫分享了。這個檔案放在php編譯原始碼目錄中:

$ cd 
$ cd php7test/php-7.0.7/sapi/fpm
$ cp init.d.php-fpm /etc/init.d/php-fpm
$ chmod +x /etc/init.d/php-fpm
$ chkconfig --add php-fpm
$ chkconfig php-fpm on

通過上面這個操作,我們就可以使用sevice php-fpm start來啟用php-fpm了。用ps -ef | grep php-fpm看看進程吧。

或者通過使用/data/php7/sbin/php-fpm來啟動php7.

Finish & Success

以上就是PHP7在開發機上的安裝使用之旅的詳細內容,更多請關注TW511.COM其它相關文章!