一、给Apache安装mod_fcgid模块
1、下载地址:https://downloads.apache.org/httpd/mod_fcgid/mod_fcgid-2.3.9.tar.gz
2、手册:http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html
tar zxvf mod_fcgid-2.3.9.tar.gz
cd mod_fcgid-2.3.9
APXS=/usr/local/httpd/bin/apxs ./configure.apxs
make && make install
二、安装PHP
安装PHP7
./configure
--prefix=/usr/local/php7
--with-config-file-path=/usr/local/php7
--disable-fileinfo
--with-apxs2=/usr/local/httpd/bin/apxs
--with-jpeg-dir
--with-png-dir
--with-gdbm
--with-gd
--with-mysqli=mysqlnd
--without-pear
--with-pdo-mysql=mysqlnd
--with-mysql-sock=/var/lib/mysql/mysql.sock
--enable-mbstring
--with-curl
--with-zlib
--with-zlib-dir
--enable-fpm
--with-openssl
--with-openssl-dir=/usr/local/php7/openssl
--enable-pdo --enable-fastcgi
make && make install
安装PHP5
./configure
--prefix=/usr/local/php5
--with-config-file-path=/usr/local/php5
--disable-fileinfo
--with-apxs2=/usr/local/httpd/bin/apxs
--with-jpeg-dir
--with-png-dir
--with-gdbm
--with-gd
--with-freetype-dir=/usr/local/freetype
--with-mysql=mysqlnd
--with-mysqli=mysqlnd
--without-pear
--with-pdo-mysql=mysqlnd
--with-mysql-sock=/var/lib/mysql/mysql.sock
--with-pgsql
--with-pdo-pgsql
--enable-mbstring
--with-curl
--enable-fpm
--with-zlib
--with-openssl
--with-openssl-dir=/usr/local/php/openssl
--enable-pdo
--enable-fastcgi
make && make install
三、修改Apache配置
httpd.conf
LoadModule fcgid_module modules/mod_fcgid.so
AddHandler fcgid-script .php
Options +ExecCGI
#配置PHP_FCGI_MAX_REQUESTS值大于或等于FcgidMaxRequestsPerProcess,防止php-cgi进程在处理完所有请求前退出
FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 1001
#php-cgi每个进程的最大请求书
FcgidMaxRequestsPerProcess 1000
#php-cgi最大的进程数
FcgidMaxProcesses 15
#最大执行时间
FcgidIOTimeout 300
FcgidIdleTimeout 300
#限制最大请求字节数(单位b)
FcgidMaxRequestLen 1073741824
AddType application/x-httpd-php .php
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
Addtype application/x-httpd-php .php
Addtype application/x-httpd-php-source .phps
修改虚拟机
<Define HOME_PHP7 /usr/local/php7/
Define HOME_PHP5 /usr/local/php5/
<VirtualHost *:80>
ServerName doman1.com
ServerAlias doman1.com
FcgidInitialEnv PHPRC "${HOME_PHP7}"
FcgidWrapper "${HOME_PHP7}bin/php-cgi" .php
DocumentRoot /www1
<Directory "/www1/">
AllowOverride all
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName doman2.com
ServerAlias doman2.com
FcgidInitialEnv PHPRC "${HOME_PHP5}"
FcgidWrapper "${HOME_PHP5}bin/php-cgi" .php
DocumentRoot /www2
<Directory "/www2/">
AllowOverride all
Allow from all
</Directory>
</VirtualHost>
出现请求超时时处理方法
mod_fcgid: error reading data from FastCGI server, referer:
mod_fcgid: ap_pass_brigade failed in handle_request_ipc function, referer
FcgidMaxProcesses 1200
FcgidBusyTimeout 78000
FcgidIOTimeout 78000
FcgidIdleTimeout 78000
FcgidConnectTimeout 78000