我怎么知道如果我的服务器运行mongodb 64位?

时间:2012-03-24 16:55:27

标签: mongodb version database

我在linode中有一个远程服务器,ubuntu lucid 10.04 64位。

我已经从mongodb repo安装了mongodb:

如果我在控制台中编写mongo,我会得到:

MongoDB shell version: 2.0.3
connecting to: test
>

我想知道我的数据库mongodb是否为64位。我不能使用32位mongodb数据库。我需要使用64位mongodb数据库。

我如何或在哪里查看?

如果我的数据库mongodb不是64位,如何在ubuntu lucid 10.04 64位中安装mongodb 64位?

谢谢!

2 个答案:

答案 0 :(得分:39)

您可以使用buildInfo命令查找服务器的构建。查找位字段的值以查看您是否使用64位构建。

> use admin
switched to db admin
> db.runCommand("buildInfo")
{
"version" : "2.0.0",
"gitVersion" : "695c67dff0ffc361b8568a13366f027caa406222",
"sysInfo" : "Darwin erh2.10gen.cc 9.6.0 Darwin Kernel Version 9.6.0: Mon Nov 24 17:37:00 PST 2008; root:xnu-1228.9.59~1/RELEASE_I386 i386 BOOST_LIB_VERSION=1_40",
"versionArray" : [
    2,
    0,
    0,
    0
],
"bits" : 64,
"debug" : false,
"maxBsonObjectSize" : 16777216,
"ok" : 1
}
> 

答案 1 :(得分:2)

从v2.4.6开始,如果服务器是32位,我的mongo客户端会在连接到mongod时立即显示以下内容。我甚至不需要运行命令。

** NOTE: This is a 32 bit MongoDB binary.
**       32 bit builds are limited to less than 2GB of data (or less with --journal).
**       Note that journaling defaults to off for 32 bit and is currently off.
**       See http://dochub.mongodb.org/core/32bit