嗨,我是一個shell n00b。Ubuntu上安裝了什麼版本的MongoDB
任何人都可以告訴我如何檢查我的Linux Ubuntu機器上安裝的MongoDB版本嗎?
我看到我的MongoDB shell版本:1.2.2所以我非常肯定MongoDB本身也過時了。有誰知道任何'如何更新MongoDB'文檔?我覺得mongodb.org有點混亂。
請謝謝。
好吧,如果我使用db.version()蒙戈的內殼,它說1.2.2
如果我$的mongod --version我得到這個:
db version v1.2.2, pdfile version 4.5
Wed Oct 16 10:28:22 git version: nogitversion
我跑
sudo apt-get update
sudo apt-get install mongodb
,並得到
sudo apt-get install mongodb
Reading package lists... Done
Building dependency tree
Reading state information... Done
mongodb is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 179 not upgraded.
mongod --version
db version v1.2.2, pdfile version 4.5
Wed Oct 16 10:31:07 git version: nogitversion
那爲什麼不更新? apt-get指向錯誤的回購/來源?
http://docs.mongodb.org/manual/tutorial/upgrade-revision/ – vittore
在蒙戈控制檯,'db.version()'應該告訴你版本 – Sammaye
是的db.version()很好,謝謝! – RachelC