MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Neu bei MongoDB Befehl mongo kann nicht ausgeführt werden

Nach der Installation der MongoDB sollten Sie manuell einen Datenordner erstellen.

By default MongoDB will store data in /data/db, 
but it won't automatically create that directory. To create it, do:

$ sudo mkdir -p /data/db/
$ sudo chown `id -u` /data/db

You can also tell MongoDB to use a different data directory,
with the --dbpath option.

Weitere Informationen finden Sie auf der Wiki-Seite von MongoDB.