3

So I was following this tutorial, but then I was stuck because when running the code:

# yum install spawn-fcgi

it says there is no package. I am using Nginx. Please suggest

EquinoX
  • 367
  • 3
  • 11
  • 27

2 Answers2

4

Turn on EPEL repo:

 rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm

then install spawn-fcgi:

 yum install spawn-fcgi
ooshro
  • 11,134
  • 1
  • 32
  • 31
  • and this would replace that yum command for spawn-fcgi? – EquinoX Feb 26 '11 at 19:29
  • I got this error: Retrieving http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-3.noarch.rpm error: skipping http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-3.noarch.rpm - transfer failed - Unknown or unexpected error warning: u 0x1f876d0 ctrl 0x1f88a40 nrefs != 0 (download.fedora.redhat.com http) – EquinoX Feb 26 '11 at 19:30
  • rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm then yum install spawn-fcgi – ooshro Feb 26 '11 at 19:32
  • when I try to download this script: # wget http://bash.cyberciti.biz/dl/419.sh.zip seems that it just won't do it, saying no data received – EquinoX Feb 26 '11 at 19:35
  • curl http://bash.cyberciti.biz/dl/419.sh.zip > 419.sh.zip – ooshro Feb 26 '11 at 19:39
  • I did that, sorry for the delay – EquinoX Feb 26 '11 at 20:47
  • for i386 http://epel.mirror.net.in/epel/5/i386/epel-release-5-4.noarch.rpm –  Feb 10 '17 at 16:43
1

For CentOS 6.2 x64 I used this:

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm

I found that repository here:

http://wiki.centos.org/AdditionalResources/Repositories

---Update July 2012

CentOS 6.2 32bit this worked for me:

rpm -ivh http://mirror.cogentco.com/pub/linux/epel/6/i386/epel-release-6-7.noarch.rpm
yum install spawn-fcgi

---Update March 2013

CentOS 6.2 64bit Linode:

rpm -ivh http://mirror.cogentco.com/pub/linux/epel/6/i386/epel-release-6-8.noarch.rpm
yum install spawn-fcgi

For future reference, this link might be helpful: How to enable "EPEL" repository for centos?

PJ Brunet
  • 586
  • 1
  • 5
  • 15