Reputation: 41
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
Reputation: 2753
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
sudo yum install -y mongodb-org
Reference: MongoDB Docs for Installing mongodb
Upvotes: 1