linux 源碼安裝php7.0 yum

PHP7和HHVM比較
PHP7的在真實場景的性能確實已經和HHVM至關, 在一些場景甚至超過了HHVM。HHVM的運維複雜, 是多線程模型, 這就表明着若是一個線程致使crash了, 那麼整個服務就掛了, 而且它不會自動重啓。另外它採用JIT, 那麼意味着, 重啓之後要預熱, 沒有預熱的狀況下, 性能較爲糟糕。而且多線程模型調試困難, 這對於追求穩定來講的Web服務來講, 是很是不適合的。php

 

下載html

# wget  http://php.uberglobalmirror.com/distributions/php-7.0.18.tar.gzmysql

 

 
 
解壓安裝
 
 
# tar zxvf php-7.0.2.tar.gz
 
 
# cd php-7.0.2
 
 
首先查看安裝幫助
 
 
# ./configure   --help
 
 
# ./configure --prefix=/usr/local/php \
 --with-curl \
 --with-freetype-dir \
 --with-gd \
 --with-gettext \
 --with-iconv-dir \
 --with-kerberos \
 --with-libdir=lib64 \
 --with-libxml-dir \
 --with-mysqli \
 --with-openssl \
 --with-pcre-regex \
 --with-pdo-mysql \
 --with-pdo-sqlite \
 --with-pear \
 --with-png-dir \
 --with-xmlrpc \
 --with-xsl \
 --with-zlib \
 --enable-fpm \
 --enable-bcmath \
 --enable-libxml \
 --enable-inline-optimization \
 --enable-gd-native-ttf \
 --enable-mbregex \
 --enable-mbstring \
 --enable-opcache \
 --enable-pcntl \
 --enable-shmop \
 --enable-soap \
 --enable-sockets \
 --enable-sysvsem \
 --enable-xml \
 --enable-zip
 

 

 

若是配置錯誤,須要安裝須要的模塊,直接yum一併安裝依賴庫nginx

# yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel MySQL pcre-develsql

 

注意:安裝php7beta3的時候有幾處配置不過去,須要yum一下,如今php-7.0.2已經不用這樣了。
# yum -y install curl-devel
# yum -y install libxslt-devel
 
編譯安裝
# make &&  make install

能夠到安裝目錄,查看生成的文件 vim

 

須要注意的是,雖然到此,PHP安裝是完成了,可是沒找到配置文件,由於配置文件 php.ini須要本身從安裝包中建立php7

 

建立php-fpm.conf文件 多線程

建立www.conf文件 運維

 

 若是不建立*.conf 文件,啓動php-fpm時候會報錯,由於它是php-fpm的配置文件 curl

 

 

Nginx與PHP的鏈接

在nginx.conf中添加以下文件

1 location ~ \.php$ {
2                root html;
3                fastcgi_pass   127.0.0.1:9000;
4                fastcgi_index index.php;
5                fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
6                include fastcgi_params; 
7         }

測試

啓動php-fpm

默認的是監聽9000端口,能夠在php-fpm配置中進行相應的修改,個人配置文件路徑以下



/usr/local/php/etc/php-fpm.d/www.conf

啓動Nginx

 

編輯測試文件內容以下 touch 1.php

vim 1.php

<?php phpinfo();

測試結果以下 

相關文章
相關標籤/搜索