标签:new repo mon mongo mongodb elf sel baseurl epo
yum
).Create a /etc/yum.repos.d/mongodb-org-3.2.repo
file so that you can install MongoDB directly, using yum
.
Changed in version 3.0: MongoDB Linux packages are in a new repository beginning with 3.0.
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
To install the packages from an earlier release series, such as 2.4 or 2.6, you can specify the release series in the repository configuration. For example, to restrict your system to the 2.6 release series, create a /etc/yum.repos.d/mongodb-org-2.6.repo
file to hold the following configuration information for the MongoDB 2.6 repository:
[mongodb-org-2.6]
name=MongoDB 2.6 Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1
You can find .repo
files for each release in the repository itself. Remember that odd-numbered minor release versions (e.g. 2.5) are development versions and are unsuitable for production use.
When you install the packages, you choose whether to install the current release or a previous one. This step provides the commands for both.
To install the latest stable version of MongoDB, issue the following command:
sudo yum install -y mongodb-org
To install a specific release of MongoDB, specify each component package individually and append the version number to the package name, as in the following example:
sudo yum install -y mongodb-org-3.2.17 mongodb-org-server-3.2.17 mongodb-org-shell-3.2.17 mongodb-org-mongos-3.2.17 mongodb-org-tools-3.2.17
You can specify any available version of MongoDB. However yum
will upgrade the packages when a newer version becomes available. To prevent unintended upgrades, pin the package. To pin a package, add the following exclude
directive to your /etc/yum.conf
file:
exclude=mongodb-org,mongodb-org-server,mongodb-org-shell,mongodb-org-mongos,mongodb-org-tools
install the mongodb on linux system
标签:new repo mon mongo mongodb elf sel baseurl epo
原文地址:http://www.cnblogs.com/719907411hl/p/7623812.html