Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

내 데이터베이스 MongoDB가 64비트인지 어떻게 알 수 있습니까?

<시간/>

buidInfo를 runCommand와 함께 사용하여 MongoDB에서 32비트 또는 64비트를 확인할 수 있습니다. 먼저 데이터베이스를 관리자로 전환합니다. 다음은 구문입니다.

use admin

그런 다음 다음 구문을 사용하여 내 서버가 MongoDB 64비트를 실행하는지 여부를 확인하십시오.

db.runCommand(buildInfo)

이제 위의 구문을 실행합니다.

> use admin
switched to db admin
> db.runCommand("buildInfo");

다음은 MongoDB가 64비트임을 표시하는 출력입니다.

{
   "version" : "4.0.5",
   "gitVersion" : "3739429dd92b92d1b0ab120911a23d50bf03c412",
   "targetMinOS" : "Windows 7/Windows Server 2008 R2",
   "modules" : [ ],
   "allocator" : "tcmalloc",
   "javascriptEngine" : "mozjs",
   "sysInfo" : "deprecated",
   "versionArray" : [
      4,
      0,
      5,
      0
   ],
   "openssl" : {
      "running" : "Windows SChannel"
   },
   "buildEnvironment" : {
      "distmod" : "2008plus-ssl",
      "distarch" : "x86_64",
      "cc" : "cl: Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24223 for x64",
      "ccflags" : "/nologo /EHsc /W3 /wd4355 /wd4800 /wd4267 /wd4244 /wd4290
      /wd4068 /wd4351 /wd4373 /we4013 /we4099 /we4930 /WX /errorReport:none /MD /O2 /Oy- /bigobj           /utf-8 /Zc:rvalueCast /Zc:strictStrings /volatile:iso /Gw /Gy /Zc:inline",
      "cxx" : "cl: Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24223 for x64",
      "cxxflags" : "/TP",
      "linkflags" : "/nologo /DEBUG /INCREMENTAL:NO /LARGEADDRESSAWARE /OPT:REF",
      "target_arch" : "x86_64",
      "target_os" : "windows"
   },
   "bits" : 64,
   "debug" : false,
   "maxBsonObjectSize" : 16777216,
   "storageEngines" : [
      "devnull",
      "ephemeralForTest",
      "mmapv1",
      "wiredTiger"
   ],
   "ok" : 1
}