robomongo是32位和64共用的吗
发布网友
发布时间:2022-04-14 07:28
我来回答
共1个回答
热心网友
时间:2022-04-14 08:58
显示一下buildInfo就知道了
看“bits” : 64,就是64位的,相应的,32就是32位的。
老蔡用命令行登录查看作为测试,没有这个权限也可以自己用程序连接了后类似办法解决。
Shell
oldcai@ProBook:~$ mongo
MongoDB shell version: 2.0.4
connecting to: test
> use admin
switched to db admin
> db.runCommand("buildInfo")
{
"version" : "2.0.4",
"gitVersion" : "nogitversion",
"sysInfo" : "Linux yellow 2.6.24-29-server #1 SMP Tue Oct 11 15:57:27 UTC 2011 x86_64 BOOST_LIB_VERSION=1_46_1",
"versionArray" : [
2,
0,
4,
0
],
"bits" : 64,
"debug" : false,
"maxBsonObjectSize" : ,
"ok" : 1
}
>