我知道如何列出一个特定的数据库中的所有集合,但我如何列出MongoDB shell中所有可用的数据库?


当前回答

有几个命令列出MongoDB shell中的所有dbs。

首先,使用“mongo”命令启动Mongodb shell。

·

然后使用下列任意命令列出所有db。

show dbs 显示数据库 db。adminCommand({listDatabases: 1, nameOnly: true})

详情请点击这里

谢谢你!

其他回答

使用show dbs命令列出mongoDB控制台中所有的数据库。

有关mongo shell命令的更多信息,请参阅mongo shell快速参考。

有几个命令列出MongoDB shell中的所有dbs。

首先,使用“mongo”命令启动Mongodb shell。

·

然后使用下列任意命令列出所有db。

show dbs 显示数据库 db。adminCommand({listDatabases: 1, nameOnly: true})

详情请点击这里

谢谢你!

对于MongoDB shell 3.0.5版本,在shell中插入以下命令:

db.adminCommand('listDatabases')

或者:

db.getMongo().getDBNames()

我已经找到了一个解决方案,其中admin()/others不起作用。

const { promisify } = require('util');
const exec = promisify(require('child_process').exec)
async function test() {
  var res = await exec('mongo  --eval "db.adminCommand( { listDatabases: 1 }         
)" --quiet')
  return { res }
}

test()
  .then(resp => {
    console.log('All dbs', JSON.parse(resp.res.stdout).databases)
  })
test()

数据库列表:

show databases
show dbs

表格/收藏列表:

show collections
show tables
db.getCollectionNames()