編譯安裝PHP及內置PHP-FPMphp
nginx自己不能處理PHP,它只是個web服務器,當接收到請求後,若是是php請求,則發給php解釋器處理,並把結果返回給客戶端(瀏覽器)。html
nginx通常是把請求發fastcgi管理進程處理,fascgi管理進程選擇cgi子進程處理結果並返回給nginx,而後nginx返回給瀏覽器。mysql
下面將以php-fpm爲例介紹如何使nginx支持PHPnginx
0.什麼是php-fpmc++
PHP-FPM是一個PHP FastCGI管理器,是隻用於PHP的.web
PHP-FPM實際上是PHP源代碼的一個補丁,旨在將FastCGI進程管理整合進PHP包中。必須將它patch到你的PHP源代碼中,在編譯安裝PHP後纔可使用。sql
新版PHP已經集成php-fpm了,再也不是第三方的包了,推薦使用。PHP-FPM提供了更好的PHP進程管理方式,能夠有效控制內存和進程、能夠平滑重載PHP配置,比spawn-fcgi具備更多優勢,因此被PHP官方收錄了。在./configure的時候帶 –enable-fpm參數便可開啓PHP-FPM,其它參數都是配置php的,具體選項含義能夠查看這裏。瀏覽器
1.安裝前準備:編譯環境及依賴服務器
編譯環境:負載均衡
yum -y install gcc automake autoconf libtool make gcc-c++ glibc
依賴包(按需安裝):
yum -y install libxslt-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5-devel libidn libidn-devel openssl openssl-devel
2.安裝php及內置php-fpm
cd ~/download #若無此目錄請建立 wget -O php-5.6.14.tar.gz http://cn2.php.net/get/php-5.6.14.tar.gz/from/this/mirror tar zxvf php-5.6.14.tar.gz cd php-5.6.14 ./configure --enable-fpm \ --enable-mbstring --disable-pdo --with-curl --disable-debug --disable-rpath \ --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \ --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex \ --enable-zip --with-pcre-regex --with-mysql --with-mysqli \ --with-gd --with-jpeg-dir
出現以下Thank you字樣,表示配置成功:
再經過make進行編譯,make install進行安裝:
make make install
最終安裝後的目錄路徑信息以下:
Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20131226/ Installing PHP CLI binary: /usr/local/bin/ Installing PHP CLI man page: /usr/local/php/man/man1/ Installing PHP FPM binary: /usr/local/sbin/ Installing PHP FPM config: /usr/local/etc/ Installing PHP FPM man page: /usr/local/php/man/man8/ Installing PHP FPM status page: /usr/local/php/php/fpm/ Installing PHP CGI binary: /usr/local/bin/ Installing PHP CGI man page: /usr/local/php/man/man1/ Installing build environment: /usr/local/lib/php/build/ Installing header files: /usr/local/include/php/ Installing helper programs: /usr/local/bin/ program: phpize program: php-config Installing man pages: /usr/local/php/man/man1/ page: phpize.1 page: php-config.1 Installing PEAR environment: /usr/local/lib/php/ [PEAR] Archive_Tar - installed: 1.3.12 [PEAR] Console_Getopt - installed: 1.3.1 [PEAR] Structures_Graph- installed: 1.0.4 [PEAR] XML_Util - installed: 1.2.3 [PEAR] PEAR - installed: 1.9.5 Wrote PEAR system config file at: /usr/local/etc/pear.conf You may want to add: /usr/local/lib/php to your php.ini include_path /root/download/php-5.6.14/build/shtool install -c ext/phar/phar.phar /usr/local/bin ln -s -f phar.phar /usr/local/bin/phar
3.給php建立專有的用戶和組www-data
groupadd www-data useradd -g www-data www-data
4.生成修改php-fpm的默認配置,並使php-fpm以www-data用戶的身份運行:
cd /usr/local/etc/ cp php-fpm.conf.default php-fpm.conf vi php-fpm.conf
找到並修改成如下行(149行):
user = www-data group = www-data
找到並修改如下行(164行)(爲了支持使用任意IP訪問,爲後面負載均衡作準備):
listen = [::]:9000
以上修改爲功後,php-fpm是能夠直接提供服務了
5.下面咱們但願將其註冊爲服務,並能夠方便的start/stop,須要以下工做
首先,修改php-fpm的配置文件,設置pid文件存放路徑:
vi /usr/local/etc/php-fpm.conf
找到並修改以下內容(25行):
pid = /var/run/php-fpm.pid
在/etc/init.d/中咱們建立一個服務腳本php-fpm
vi /etc/init.d/php-fpm
寫入如下內容:
View Code
給該腳本賦予執行權限:
chmod +x /etc/init.d/php-fpm
註冊爲服務並隨系統啓動:
chkconfig php-fpm on
6.以上完成後,咱們就能夠測試並運行php了(將運行在9000端口)
service php-fpm start
咱們能夠經過下面的命令查看到php-fpm的進程:
ps aux|grep php
將打印出進程信息:
到此,php-fpm已經能夠提供服務了