Packages
The MongoDB downloads repository contains two packages:
-
mongo-10gen-server
This package contains the
mongod
andmongos
daemons from the latest stable release and associated configuration and init scripts. Additionally, you can use this package to install daemons from a previous release of MongoDB. -
mongo-10gen
This package contains all MongoDB tools from the latest stable release. Additionally, you can use this package to install tools from a previous release of MongoDB. Install this package on all production MongoDB hosts and optionally on other systems from which you may need to administer MongoDB systems.
Install MongoDB
Configure Package Management System (YUM)
Create a /etc/yum.repos.d/mongodb.repo
file to hold the following configuration information for the MongoDB repository:
Tip
For production deployments, always run MongoDB on 64-bit systems.
If you are running a 64-bit system, use the following configuration:
[mongodb] name=MongoDB Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/ gpgcheck=0 enabled=1
If you are running a 32-bit system, which is not recommended for production deployments, use the following configuration:
[mongodb] name=MongoDB Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686/ gpgcheck=0 enabled=1
Install Packages
Issue the following command (as root
or with sudo
) to install the latest stable version of MongoDB and the associated tools:
yum install mongo-10gen mongo-10gen-server
==============================================z
创建目录/data/db/
MongoDB在 redahat 企业版(Red Hat Enterprise Linux Server release 6.3 (Santiago))上的安装