免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

apache與php-fpm的安裝方法-創(chuàng)新互聯(lián)

apache與php-fpm的安裝方法?這個(gè)問(wèn)題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見(jiàn)到的。希望通過(guò)這個(gè)問(wèn)題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!

成都創(chuàng)新互聯(lián)公司是一家專(zhuān)注于成都網(wǎng)站建設(shè)、做網(wǎng)站與策劃設(shè)計(jì),臨桂網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:臨桂等地區(qū)。臨桂做網(wǎng)站價(jià)格咨詢:18982081108

apache php fpm的安裝方法:首先安裝“php5.6 fast-cgi”模式;然后配置apache;接著添加對(duì)php頁(yè)面的支持;最后開(kāi)啟url rewrite及虛擬主機(jī)即可。

apache與php-fpm的安裝方法

apache 安裝配置 以及php-fpm結(jié)合apache配置

解決依賴(lài)關(guān)系

下載apr  apr-util:http://apr.apache.org/download.cgi

編譯安裝apr:

 ./configure --prefix=/usr/local/apr
    make && make install

編譯安裝apr-util:

./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr 
    make && make install

編譯apache2.4.2:

[root@martin httpd-2.4.20]#  ./configure --prefix=/usr/local/apache2.4.2 \
    --sysconfdir=/etc/httpd   \
    --enable-so   \
    --enable--ssl   \
    --enable-cgi   \
    --enable-rewrite   \
    --with-zlib  \
    --with-pcre  \
    --with-apr=/usr/local/apr  \
    --with-apr-util=/usr/local/apr-util  \
    --enable-modeles=most  \
    --enable-mpms-shared=all  \
    --with-mpm=event

參數(shù)詳解:

--prefix:#安裝路徑
    --sysconfdir:#指定配置文件路徑
    --enable-so:#DSO兼容,DSO=Dynamic Shared Object,動(dòng)態(tài)共享對(duì)象,可實(shí)現(xiàn)模塊動(dòng)態(tài)生效
    --enable-ssl:#支持SSL/TLS,可實(shí)現(xiàn)https訪問(wèn) 需已安裝openssl-devel
    --enable-cgi:#支持CGI腳本(默認(rèn)對(duì)非線程的MPM模式開(kāi)啟)
    --enable-rewrite:#啟用Rewrite功能,URL重寫(xiě)
    --enable-deflate:#支持壓縮功能
    --with-zlib:#使用指定的zlib庫(kù),不指定路徑會(huì)自動(dòng)尋找
    --with-pcre:#使用指定的PCRE庫(kù),不指定路徑會(huì)自動(dòng)尋找 需已安裝pcre-devel
    --with-apr:#指定apr安裝路徑
    --with-apr-util:#指定apr-util安裝路徑
    --enable-mpms-shared:#支持動(dòng)態(tài)加載的MPM模塊,可選參數(shù):all
    --with-mpm:#設(shè)置默認(rèn)啟用的MPM模式,{prefork|worker|event}
    --enable-modules:#支持動(dòng)態(tài)啟用的模塊,可選參數(shù):all,most,few,reallyall
    #編譯之前可使用./configure --help查看各項(xiàng)參數(shù)
[root@martin local]# make && make install
    [root@martin local]# cd /usr/local
    [root@martin local]# ln -sv apache2.4.2/ apache

導(dǎo)入環(huán)境變量:

[root@martin local]#  vim /etc/profile.d/httpd.sh
    export PATH=/usr/local/apache/bin:$PATH
    [root@martin local]# . /etc/profile.d/httpd.sh

編譯配置查看:

啟動(dòng)文件:

#!/bin/bash
    #
    # httpd        Startup script for the Apache HTTP Server
    #
    # chkconfig: - 85 15
    # description: The Apache HTTP Server is an efficient and extensible  \
    #              server implementing the current HTTP standards.

開(kāi)機(jī)啟動(dòng):

chmod +x /etc/rc.d/init.d/httpd
    chkconfig --add httpd
    chkconfig httpd on

安裝php5.6  fast-cgi模式:

依賴(lài):

php-configure-apache:

./configure  --prefix=/usr/local/phpfpm  \
    --with-config-file-path=/etc \
    --with-config-file-scan-dir=/etc/php.d \
     --with-mysql=mysqlnd  \
    --with-pdo-mysql=mysqlnd  \
    --with-mysqli=mysqlnd  \
    --with-iconv-dir   \
    --with-freetype-dir   \
    --with-jpeg-dir  \
    --with-png-dir  \
    --with-zlib \
    --with-libxml-dir  \
    --enable-xml  \
    --disable-rpath  \
    --enable-bcmath  \
    --enable-shmop  \
    --enable-sysvsem  \
    --enable-inline-optimization  \
    --with-curl  \
    --enable-mbregex  \
    --enable-fpm  \
    --enable-mbstring  \
    --with-mcrypt  \
    --with-gd  \
    --enable-gd-native-ttf  \
    --with-openssl  \
    --with-mhash  \
    --enable-pcntl  \
    --enable-sockets  \
    --with-xmlrpc  \
    --enable-zip  \
    --enable-soap  \
    --enable-short-tags   \
    --enable-static  \
    --with-xsl  \
    --with-fpm-user=apache  \
    --with-fpm-group=apache  \
    --enable-ftp
[root@marvin php-5.6.19]#make && make install
    [root@marvin php-5.6.19]# cp php.ini-development /etc/php.ini
    [root@marvin php-5.6.19]# cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm
    [root@marvin php-5.6.19]# chmod +x /etc/rc.d/init.d/php-fpm 
    [root@marvin php-5.6.19]# chkconfig --add php-fpm
    [root@marvin php-5.6.19]# chkconfig php-fpm on
[root@marvin etc]# cd  /usr/local/phpfpm/etc
    [root@marvin phpfpm]# cp php-fpm.conf.default php-fpm.conf
    [root@marvin phpfpm]# vim php-fpm.conf
    pm.max_children = 50
    pm.start_servers = 5
    pm.min_spare_servers = 2
    pm.max_spare_servers = 8
    pid = /usr/local/phpfpm/var/run/php-fpm.pid

配置apache

在Apache httpd 2.4以后已經(jīng)專(zhuān)門(mén)有一個(gè)模塊針對(duì)FastCGI的實(shí)現(xiàn),此模塊為mod_proxy_fcgi.so,它其實(shí)是作為mod_proxy.so模塊的擴(kuò)充,因此,這兩個(gè)模塊都要加載:

LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so

添加對(duì)php頁(yè)面的支持

 AddType application/x-httpd-php .php
     AddType application/x-httpd-php-source .phps

開(kāi)啟url rewrite:

開(kāi)啟防止啟動(dòng)警告

開(kāi)啟虛擬主機(jī):

虛擬主機(jī):

<VirtualHost *:80>
        DocumentRoot  "/www/web/forum"
        ServerName www.forum.com
      ProxyRequests Off
      ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/www/web/forum/$1
        <Directory "/www/web/forum">
            Options none
            AllowOverride none
            Require all granted
        </Directory>
    </VirtualHost>

感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)apache與php-fpm的安裝方法大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。

網(wǎng)站題目:apache與php-fpm的安裝方法-創(chuàng)新互聯(lián)
URL分享:http://m.newbst.com/article42/jgphc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)網(wǎng)站制作網(wǎng)站導(dǎo)航域名注冊(cè)ChatGPT網(wǎng)站設(shè)計(jì)定制網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司