|
When installing MongoDB Enterprise on RHEL using yum, the documentation tells users to use a specific repo file. In the 3.0 documentation, this file has an incorrect header and will install 3.2 MongoDB if used as currently shown.
Instead of
[mongodb-enterprise]
|
name=MongoDB Enterprise Repository
|
baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/3.0/$basearch/
|
gpgcheck=0
|
enabled=1
|
it should be
[mongodb-enterprise-3.0]
|
name=MongoDB Enterprise Repository
|
baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/3.0/$basearch/
|
gpgcheck=0
|
enabled=1
|
|