yum install mongodb 3.2 fails
centos, mongodb, yum
Solution
I figured out what was my problem. It was in my `yum.conf` file
exclude=mongodb-org,mongodb-org-server,mongodb-org-shell,mongodb-org-mongos,mongodb-org-tools
Once I commented out this line from `yum.conf`, everything went fine.
Problem
I am trying to install mongodb 3.2 on a CentOS 7 machine and facing issues in locating the packages. I have updated the repo file as per the documentation: ``` [mongodb-org-3.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.2/x86_64/ gpgcheck=0 enabled=1 ``` When running `sudo yum install mongodb-org` I am getting this error: ``` [centos@ip-10-24-1-228 ~]$ sudo yum install mongodb-org Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ftp.osuosl.org * epel: linux.mirrors.es.net * extras: mirror.lax.hugeserver.com * updates: mirror.hmc.edu No package mongodb-org available. Error: Nothing to do ``` Why do I get this message?