If you are using the instructions at http://docs.mongodb.org/manual/tutorial/install-mongodb-on-red-hat-centos-or-fedora-linux/ they say to create a file called /etc/yum.repos.d/10gen.repo - but if you try that, you may be getting the following error when trying to start the mongod service.
It turns out that mongodb is built into fedora (via yum), so you don't need to add the 10gen.repo file. Here's how to install mongodb on Fedora:
1) Uninstall mongodb:
yum erase mongodb
yum erase mongo-10gen
2) Remove the 10gen.repo file
rm /etc/yum.repos.d/10gen.repo
3) Install mongodb via default yum
yum install mongodb mongodb-server
4) Start monogodb service
/sbin/service mongod start
No comments:
Post a Comment