sivakami
sivakami

Reputation: 41

How to Install mongodb on fedora 23

enter image description here

my system configuration is based on the attached image file.please help me out to install orelse I need to write a entire configuration ??

Upvotes: 3

Views: 3577

Answers (1)

Rehan Manzoor
Rehan Manzoor

Reputation: 2753

  1. Create a /etc/yum.repos.d/mongodb-org-3.2.repo file so that you can install MongoDB directly, using yum. Use the following repository file:

    [mongodb-org-3.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.2/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-3.2.asc

  2. sudo yum install -y mongodb-org

Reference: MongoDB Docs for Installing mongodb

Upvotes: 1

Related Questions