Friends - Have you started your Sitecore 8 Journey? How's it? It's awesome.. right?
You will observe many new things while exploring Sitecore 8. This post will talk about one of such things.
Scenario:
If you find that your Sitecore 8 package installer is going in never ending loop, then this post may help you.
Reason:
If you look at your logs during package installation, then you may find few errors reported by Sitecore.Analytics.MongoDB. This tells that your Sitecore 8 instance is not able to connect with your Mongo DB.
Solution:
Well, solution is very simple. You need to start your MongoDB database process by firing below command:
In case, if you haven't installed/configured MongoDB for your Sitecore 8 then you need to first setup MongoDB and then start MongoDB database process.
If you are looking for how to setup MongoDB then this link may help you.
After staring MongoDB database process, now try to install package in your Sitecore 8 instance and it should get installed without any issue.
You will observe many new things while exploring Sitecore 8. This post will talk about one of such things.
Scenario:
If you find that your Sitecore 8 package installer is going in never ending loop, then this post may help you.
Reason:
If you look at your logs during package installation, then you may find few errors reported by Sitecore.Analytics.MongoDB. This tells that your Sitecore 8 instance is not able to connect with your Mongo DB.
Solution:
Well, solution is very simple. You need to start your MongoDB database process by firing below command:
mongod.exe --dbpath "[location of your MongoDB/data/db]"
For example:
mongod.exe --dbpath "C:\Program Files\MongoDB 2.6 Standard\data\db"
In case, if you haven't installed/configured MongoDB for your Sitecore 8 then you need to first setup MongoDB and then start MongoDB database process.
If you are looking for how to setup MongoDB then this link may help you.
After staring MongoDB database process, now try to install package in your Sitecore 8 instance and it should get installed without any issue.