CentOS的的mod_fastcgi(CentOS mod_fastcgi)

2019-07-31 01:14发布

我有服务器安装了CentOS 6.2与雷米回购的Nginx和PHP-FPM

httpd的也装了,但是当我尝试安装的mod_fastcgi百胜最高审计机关没有pachage availiable

我怎么才能安装的mod_fastcgi ??? 谷歌搜索不同的网站说,命令

yum install mod_fastcgi

必须安装该软件包。 但百胜赛斯:

Loaded plugins: fastestmirror, priorities
Loading mirror speeds from cached hostfile
 * epel: mirror.cogentco.com
 * remi: remi-mirror.dedipower.com
196 packages excluded due to repository priority protections
Setting up Install Process
No package mod_fastcgi available.
Error: Nothing to do

Answer 1:

似乎没有成为任何官方软件包mod_fastcgi 。 看来,红帽希望您使用mod_fcgid ,但它缺少一个重要的功能,使用外部FastCGI服务器进程(而不是由Apache的管理),如PHP-FPM的能力。

从http://www.garron.me/en/linux/apache-mpm-worker-php-fpm-mysql-centos.html ,我发现,你可以下载非官方mod_fastcgi从RPMForge软件/ RepoForge库的RPM:

sudo rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
sudo rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
sudo yum install mod_fastcgi

我已经测试了轻轻他们,他们对我的工作。



Answer 2:

你应该能够做到的从源代码安装。 试试这里的操作说明: http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html

我已经成功地用在CentOS这些指令。



Answer 3:

安装mod_fcgid从EPEL软件库

# yum --enablerepo=epel info mod_fcgid
Available Packages
Name       : mod_fcgid
Arch       : x86_64
Version    : 2.2
Release    : 11.el5
Size       : 58 k
Repo       : epel
Summary    : Apache2 module for high-performance server-side scripting
URL        : http://fastcgi.coremail.cn/
License    : GPL+
Description: mod_fcgid is a binary-compatible alternative to the Apache module mod_fastcgi.
           : mod_fcgid has a new process management strategy, which concentrates on reducing
           : the number of fastcgi servers, and kicking out corrupt fastcgi servers as soon
           : as possible.


文章来源: CentOS mod_fastcgi