MongoDB को स्थापित करने के बाद आपको मैन्युअल रूप से एक डेटा फ़ोल्डर बनाना चाहिए।
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.
अधिक विस्तृत जानकारी के लिए MongoDB विकी पेज पर जाएं।