Après avoir installé MongoDB, vous devez créer manuellement un dossier de données.
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.
Pour plus d'informations, rendez-vous sur la page wiki de MongoDB.