I am working on a Sitecore site (Sitecore 8 Update 2).
I installed MongoDB and I can connect to localhost: 27017 with Robomongo and MongoVUE, but thatβs all I get.

I connected Sitecore to MongoDB using these connection strings:
<add name="analytics" connectionString="mongodb://localhost:27017/kbs_analytics" /> <add name="tracking.live" connectionString="mongodb://localhost:27017/kbs_tracking_live" /> <add name="tracking.history" connectionString="mongodb://localhost:27017/kbs_tracking_history" /> <add name="tracking.contact" connectionString="mongodb://localhost:27017/kbs_tracking_contact" />
But this is not like a link.
As far as I can tell, once I have the connection string, Sitecore should at least start creating some collections in the database. But this does not happen, and I do not receive error messages.
Does anyone know what might cause this, or what could I forget?
source share