peibaishi 发表于 2016-12-2 06:59:22

mongo安装

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:


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:


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
页: [1]
查看完整版本: mongo安装