系统相关
首页 > 系统相关> > linux – CentOS mod_fastcgi

linux – CentOS mod_fastcgi

作者:互联网

我的服务器安装了带有nginx的CentOS 6.2和来自remi repos的php-fpm

httpd也安装了,但是当我尝试安装mod_fastcgi yum sais时,没有pachage可用

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

yum install mod_fastcgi

必须安装此包.但是yum sais:

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

解决方法:

mod_fastcgi似乎没有任何官方软件包.似乎RedHat更喜欢你使用mod_fcgid,但它缺少一个重要的功能,即使用外部FastCGI服务器进程(不是由Apache管理)的能力,如PHP-FPM.

http://www.garron.me/en/linux/apache-mpm-worker-php-fpm-mysql-centos.html开始,我发现了
您可以从RPMForge / RepoForge存储库下载非官方的mod_fastcgi 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

我对它们进行了轻微的测试,它们适合我.

标签:linux,centos,mod-fastcgi
来源: https://codeday.me/bug/20190826/1727266.html