show databases //Print a list of all available databases.
show dbs // Print a list of all databases on the server.
更多的基本命令
use <db> // Switch current database to <db>. The mongo shell variable db is set to the current database.
show collections //Print a list of all collections for current database.
show users //Print a list of users for current database.
show roles //Print a list of all roles, both user-defined and built-in, for the current database.
7条答案
按热度按时间g6baxovj1#
在MongoDB控制台中列出所有数据库是使用命令
show dbs
。有关mongo外壳命令的更多信息,请参阅Mongo Shell Quick Reference。
pbwdgjma2#
对于数据库列表:
对于表格/集合列表:
zvms9eto3#
对于MongoDB外壳3.0.5版,在外壳中插入以下命令:
或者,也可以:
sxissh064#
从命令行发出
它给出了输出
nle07wnf5#
列出外壳上的MongoDB数据库
更多的基本命令
vuv7lop36#
有几个命令可以列出MongoDB外壳中的所有数据库。
首先,使用‘mongo’命令启动MongoDB外壳。
蒙戈
然后使用以下任一命令列出所有数据库。
有关详细信息,请查看here
谢谢。
nr7wwzry7#
我找到了一个解决方案,其中admin()/其他方法不起作用。