Following the instructions here: http://www.mongodb.org/display/DOCS/CentOS+and+Fedora+Packages

Can't really decipher what I should be doing...broke down and just got the linux binary but I want yum control...

$ cat /etc/yum.repos.d/10gen-mongodb.repo

[10gen]
name=10gen Repository
baseurl=http://downloads.mongodb.org/distros/centos/5.4/os/x86_64/
gpgcheck=0

$ sudo yum install mongo-stable mongo-stable-server

Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
Setting up Install Process
No package mongo-stable available.
No package mongo-stable-server available.

Also tried:

baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64

Are these packages just no longer available at these locations? Not sure if it's a technicality wrt redhat vs centos. Thanks!

link|improve this question

33% accept rate
feedback

1 Answer

Use baseurl http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 for 64-bit system, and http://downloads-distro.mongodb.org/repo/redhat/os/i686 for 32-bit system. New packages name: mongo-10gen and mongo-10gen-server. For install:

 # yum install mongo-10gen-server mongo-10gen
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.