我使用的是 Ubuntu OS 14.04。我已经安装了 MEAN 堆栈项目的所有要求。推荐本网站点击这里
上面解释的示例对我有用,但我想检查数据库集合
请告诉我在 Ubuntu 中使用 mongodb 的正确方法。我是 MEAN 堆栈的新手
谢谢
您可以通过运行"sudo service mongod start"来启动Mongo DB服务器。之后,您可以打开一个新终端并键入"mongo",它应该通过显示"连接到测试"来连接到mongo数据库服务器。
use following commands:
-> "show dbs" - show existing database.
-> "use db_name" - to switch to a particular database.
-> "show collections" - to show all the collections in the selected database
我对此不是很确定,如果失败,您可以下载并使用MongoDB GUI,如Mongo Management Studio或Mongo Booster或RoboMongo。