安装MongoDB的方法有很多种,可以源代码安装,在CentOS也可以用yum源安装的方法。由于MongoDB更新得比较快,我比较喜欢用yum源安装的方法。64位Centos下的安装步骤如下:

1、准备工作

运行yum命令查看MongoDB的包信息 [root@localhost~]# yum info mongo-10gen

(提示没有相关匹配的信息,) 说明你的centos系统中的yum源不包含MongoDB的相关资源,所以要在使用yum命令安装MongoDB前需要增加yum源,也就是在 /etc/yum.repos.d/目录中增加 *.repo yum源配置文件

2、vi /etc/yum.repos.d/10gen.repo,输入下面的语句:

[10gen]

name=10gen Repository

baseurl=http://downloads-distro.mongodb.org/repo/RedHat/os/x86_64

gpgcheck=0

做好yum源的配置后,如果配置正确执行下面的命令便可以查询MongoDB相关的信息:

查看mongoDB的服务器包的信息

[root@localhost geffzhang]# yum info mongo-10gen-server
 * base: centos.ustc.edu.cn
 * extras: centos.ustc.edu.cn
 * updates: centos.ustc.edu.cn
Installed Packages
Name        : mongo-10gen-server
Arch        : x86_64
Version     : 2.0.6
Release     : mongodb_1
Size        : 13 M
Repo        : installed
From repo   : 10gen
Summary     : mongo server, sharding server, and support scripts
URL         : http://www.mongodb.org
License     : AGPL 3.0
Description : Mongo (from "huMONGOus") is a schema-free document-oriented
            : database.
            : 
            : This package provides the mongo server software, mongo sharding
            : server softwware, default configuration files, and init.d scripts.

查看客户端安装情况 【Linux公社 http://www.linuxidc.com 】 
[root@localhost geffzhang]#

* base: centos.ustc.edu.cn
 * extras: centos.ustc.edu.cn
 * updates: centos.ustc.edu.cn
Installed Packages
Name        : mongo-10gen
Arch        : x86_64
Version     : 2.0.6
Release     : mongodb_1
Size        : 69 M
Repo        : installed
From repo   : 10gen
Summary     : mongo client shell and tools
URL         : http://www.mongodb.org
License     : AGPL 3.0
Description : Mongo (from "huMONGOus") is a schema-free document-oriented
            : database. It features dynamic profileable queries, full indexing,
            : replication and fail-over support, efficient storage of large
            : binary data objects, and auto-sharding.
            : 
            : This package provides the mongo shell, import/export tools, and
            : other client utilities.

3、安装MongoDB的服务器端和客户端工具  
[root@localhost geffzhang]#  yum install mongo-10gen-server

[root@localhost geffzhang]#  yum install mongo-10gen

from:http://www.linuxidc.com/Linux/2012-08/68196.htm

最新文章

  1. Microsoft Visual Studio PDB文件相关事宜
  2. 关于MVC的开源商城 Nop之闲聊
  3. FizzBuzz 问题
  4. Apache HTTP Server 2.2.26 发布
  5. Python on VS Code
  6. oracle用sqlplus创建新用户,不是plsql developer
  7. Linux系统在嵌入式硬件上的移植
  8. Application, JDBC, 数据库连接池, Session, 数据库的关系
  9. HttpWebRequest中的KeepAlive
  10. 代码设置layout_weight attribute
  11. 数据库元数据MetaData
  12. 【linux】linux根文件系统制作
  13. android学习8——获取view在屏幕上的绝对坐标
  14. HTTP 简要
  15. Mock拦截ajax请求
  16. hdu5631 BestCoder Round #73 (div.2)
  17. 【JMeter】(3)---MySQL压测
  18. 猴子选大王的c#实现
  19. leetcode46. Permutations 、47. Permutations II、 剑指offer字符串的排列
  20. xamarin.Android ImageView 异步加载网络图片

热门文章

  1. Java中的循环结构
  2. Python 类的常用内置方法
  3. VC/c++版本获取现行时间戳精确到毫秒
  4. 「洛谷P3469」[POI2008]BLO-Blockade 解题报告
  5. PHP 对接 饿了么开放平台 接单
  6. Ant Design Pro项目打开页设为登录或者其他页面
  7. 深入 Create React App 核心概念
  8. ASP.NET Core Web程序托管到Windows 服务
  9. C#多线程与异步
  10. python判断是否是质数