Skip to content

Using The Mongo Database

Mikaeljlj edited this page Oct 15, 2017 · 1 revision

Mongo Database

Starting the Mongo server

sudo mongod
  • The default folder is set to /data/db
  • You may need to create this folder during first time setup

Connecting using the Mongo client

mongo
  • The mongo automatically connects to the local mongod server by default
show dbs
use <chosen database>
Clone this wiki locally