mongo:为什么我看不到收藏品?

时间:2017-01-19 21:03:45

标签: mongodb

我使用了mongo shell,即使它存在,我看不到我的收藏:

> db.first.insert({name:'test',value:10})
> db.first.insert({name:'test2',value:20})

> db.first.find()
{ "_id" : ObjectId("588122a970e3439f3e3964ad"), "name" : "test", "value" : 10 }
{ "_id" : ObjectId("588122b170e3439f3e3964ae"), "name" : "test2", "value" : 20 }
> show collections  
########## Here is no results !!!! ############
> db.first.drop()  
true
> db.first.drop()
false

有什么建议吗?

问候,奥拉夫

mongod --version

db version v3.4.1

构建环境:     distmod:debian81     distarch:x86_64     target_arch:x86_64

1 个答案:

答案 0 :(得分:-1)

答案,但没有解释:

我在docker中使用了mogodb,docker mogngo的版本比主机上的客户端版本更新。

当我附加到竞争者并使用相同的客户端和服务器版本时,一切正常

由于