我有一个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位?
谢谢!
解决方法
您可以使用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 ],"bits" : 64,"debug" : false,"maxBsonObjectSize" : 16777216,"ok" : 1 } >