温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CentOS YUM安装Apache2后怎么安装配置mod_fastcgi

发布时间:2021-10-19 09:41:01 来源:亿速云 阅读:122 作者:小新 栏目:web开发

这篇文章主要为大家展示了“CentOS YUM安装Apache2后怎么安装配置mod_fastcgi”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“CentOS YUM安装Apache2后怎么安装配置mod_fastcgi”这篇文章吧。

由于php php-fpm是编译安装的,httpd是yum安装的

安装fastcgi时发现 yum search mod_fastcgi 没有。那么只有编译安装mod_fastcgi了

cd /usr/local/vipcloud/src/
wget http://www.fastcgi.com/dist/mod_fastcgi-current.tar.gz
tar -zxvf mod_fastcgi-current.tar.gz
cd mod_fastcgi-2.4.6
more README

然后发现需要看INSTALL.AP2

继续

more INSTALL.AP2

看到

*NIX
  ====
    $ cd <mod_fastcgi_dir>
    $ cp Makefile.AP2 Makefile
    $ make
    $ make install
    If your Apache2 installation isn't in /usr/local/apache2, then
    set the top_dir variable when running make (or edit the
    Makefile), e.g.
      $ make top_dir=/opt/httpd/2.0.40
    Add an entry to httpd.conf like this:
      LoadModule fastcgi_module modules/mod_fastcgi.so

看第7行,需要指定apache2的安装目录

由于apache是yum安装的 没有特定的安装目录,浪个办?想到反正这里是需要module的目录吧,于是将

cp Makefile.AP2  Makefile
vim Makfiel
把top_dir=替换为
top_dir = /usr/lib64/httpd

然后 make && make install

报错。

看来不能直接这样。

度娘之。

度娘出来的都是编译安装apache的fastcgi安装

google之

http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html

yum install libtool httpd-devel apr-devel apr

然后在make make install安装 搞定。

touch /var/www/cgi-bin/php.fcgi
vim /var/www/cgi-bin/php.fcgi
#!/bin/bash
# Shell Script To Run PHP5 using mod_fastcgi under Apache 2.x
# Tested under Red Hat Enterprise Linux / CentOS 5.x
### Set PATH ###
PHP_CGI=/usr/local/vipcloud/php/bin/php-cgi # php 安装的路径
PHP_FCGI_CHILDREN=4
PHP_FCGI_MAX_REQUESTS=1000
### no editing below ###
export PHP_FCGI_CHILDREN
export PHP_FCGI_MAX_REQUESTS
exec $PHP_CGI
cd /etc/httpd/conf.d
vim fsatcgi.php.conf
DirectoryIndex index.html index.shtml index.cgi index.php
AddHandler php5-fcgi .php
Action php5-fcgi /php5-fcgi
Alias /php5-fcgi /var/www/cgi-bin/php.fcgi
FastCgiExternalServer /var/www/cgi-bin/php.fcgi -idle-timeout 60 -host 127.0.0.1:9000 -pass-header Authorization

touch /var/www/html/test.php

echo "<?phpinfo()?>" >test.php

以上是“CentOS YUM安装Apache2后怎么安装配置mod_fastcgi”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI