recherche

Maison  >  Questions et réponses  >  le corps du texte

怎样检测服务器上的mongodb是64位的?

如题。使用 apt-get install mongodb 安装的mongodb,但是不知道装的是什么版本。不知道在哪里查看?

黄舟黄舟2822 Il y a quelques jours655

répondre à tous(2)je répondrai

  • ringa_lee

    ringa_lee2017-04-21 11:19:48

    Montrez simplement le buildInfo et vous saurez

    Voir"bits": 64, Mongodb est en 64 bits.
    J'utilise la ligne de commande pour me connecter. Si vous ne disposez pas de cette autorisation, vous pouvez également utiliser un programme pour vous connecter et résoudre le problème de la même manière.

    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" : 16777216,
    	"ok" : 1
    }
    >

    répondre
    0
  • 怪我咯

    怪我咯2017-04-21 11:19:48

    uname -a Jetez un oeil, si votre ubuntu/debian est en 64 bits, alors mongodb est également en 64 bits.

    répondre
    0
  • Annulerrépondre