apache category
配置apache以fastcgi运行php
发表于:2012年07月24日  分类:Apache  添加评论  125 次浏览 

apache默认是用自带的mod_php模块运行php,现在我们介绍使用fastcgi来执行php脚本。先说下fastcgi的优点:
Fastcgi的优点:

  • 从稳定性上看, fastcgi是以独立的进程池运行来cgi,单独一个进程死掉,系统可以很轻易的丢弃,然后重新分 配新的进程来运行逻辑.
  • · 从安全性上看,Fastcgi支持分布式运算. fastcgi和宿主的server完全独立, fastcgi怎么down也不会把server搞垮.
  • · 从性能上看, fastcgi把动态逻辑的处理从server中分离出来, 大负荷的IO处理还是留给宿主server, 这样宿主server可以一心一意作IO,对于一个普通的动态网页来说, 逻辑处理可能只有一小部分, 大量的图片等静态
  • IO处理完全不需要逻辑程序的参与.
  • · 从扩展性上讲, fastcgi是一个中立的技术标准, 完全可以支持任何语言写的处理程序 (php,java,perl,ruby,c++,python…)
  • · 适用操作系统,可在任何平台上http://www.fastcgi.com/dist/mod_fastcgi-current.tar.gz使用

    安装apache

      wget http://apache.ziply.com//httpd/httpd-2.2.21.tar.gz

    1. tar xzf httpd-2.2.21.tar.gz
    2. cd httpd-2.2.21
    3. ./configure –prefix=/usr/local/apache
    4. make && make install

    安装fastcgi

      wget http://www.fastcgi.com/dist/mod_fastcgi-2.4.6.tar.gz

    1. tar xzf mod_fastcgi-2.4.6.tar.gz
    2. cd mod_fastcgi-2.4.6
    3. cp Makefile.AP2 Makefile
    4. make top_dir=/usr/local/apache
    5. make top_dir=/usr/local/apache install

    完成之后编辑httpd.conf配置文件,加入fastcgi模块装载代码:

      LoadModule fastcgi_module modules/mod_fastcgi.so
  • 安装php5.2

      wget http://us2.php.net/get/php-5.2.17.tar.gz/from/am.php.net/mirror

    1. tar xzf php-5.2.17.tar.gz
    2. cd php-5.2.17
    3. ./configure –prefix=/usr/local/php –enable-fastcgi –disable-cli
    4. make && make install

    配置apache支持php

    编辑httpd.conf文件,加入如下代码:

      ### fastcgi ###

    1. ScriptAlias /fcgi-bin/ “/usr/local/php/bin/”
    2. AddHandler php-fastcgi .php
    3. Action php-fastcgi /fcgi-bin/php-cgi
    4. AddType application/x-httpd-php .php
    5.  
    6. <IfModule mod_fcgid.c>
    7.     AddHandler fcgid-script. .php .fcgi   ### 暂时只配置支持.php
    8.     IdleTimeout 300
    9.     ProcessLifeTime 1800
    10.     MaxProcessCount 100
    11.     DefaultMinClassProcessCount 3
    12.     DefaultMaxClassProcessCount 8
    13.     IPCConnectTimeout 15
    14.     IPCCommTimeout 300
    15.     MaxRequestsPerProcess 100
    16. </IfModule>
    17. ### fastcgi ###

    建立虚拟主机可以这样配置:

      <VirtualHost *:80>

    1.  DocumentRoot /usr/local/apache/htdocs
    2.  ServerName localhost
    3.  Options +ExecCGI
    4.  AddHandler fastcgi-script .fcgi
    5.  AddType application/x-httpd-php .php
    6.  Action application/x-httpd-php /fcgi-bin/php-cgi
    7.  <Directory /usr/local/apache/htdocs>
    8.  Options Indexes ExecCGI
    9.  Order allow,deny
    10.  allow from all
    11.  </Directory>
    12. </VirtualHost>

    详细的fastcgi指令配置请看:http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html

    转载请注明文章来源:http://www.centos.bz/2011/12/configure-apache-run-php-as-fastcgi/

    固定链接: http://anywang.vicp.net:8180/wp/?p=257 | 网邻's Blog

    给我留言


    / 快捷键:Ctrl+Enter

    留言没头像?这里教你设置头像!