Troubleshooting Sitecore 8 XP Analytics
Is your Sitecore 8 package installer goes in never ending loop?
Excel Transfer Utility for Sitecore
10 Steps to Setup MongoDB as a Windows Service with Sitecore 7.5+
Sitecore and xDB – Setting up MongoDB on your developer machine
How to install MongoDB on Windows
Install MongoDB
1. Install MongoDB through .msi file
2. Go to C:\Program Files\MongoDB\Server\3.2 and create mongod.cfg file with below content
systemLog:
destination: file
path: C:\MongoDB\log\mongod.log
storage:
dbPath: C:\MongoDB\db
3. Go to directory where MongoDB is installed ( ex: C:\Program Files\MongoDB\Server\3.2\bin )
4. Execute below command in commad prompt
mongod.exe --config "C:\Program Files\MongoDB\Server\3.2\mongod.cfg" --install --serviceName "MongoDB"
This step will create MongoDB service
5. Start MongoDB through this command net start MongoDB
6. Stop MongoDB through this command net stop MongoDB
Ref: https://stackoverflow.com/questions/20796714/how-do-i-start-mongo-db-from-windows
Is your Sitecore 8 package installer goes in never ending loop?
Excel Transfer Utility for Sitecore
10 Steps to Setup MongoDB as a Windows Service with Sitecore 7.5+
Sitecore and xDB – Setting up MongoDB on your developer machine
How to install MongoDB on Windows
Install MongoDB
1. Install MongoDB through .msi file
2. Go to C:\Program Files\MongoDB\Server\3.2 and create mongod.cfg file with below content
systemLog:
destination: file
path: C:\MongoDB\log\mongod.log
storage:
dbPath: C:\MongoDB\db
3. Go to directory where MongoDB is installed ( ex: C:\Program Files\MongoDB\Server\3.2\bin )
4. Execute below command in commad prompt
mongod.exe --config "C:\Program Files\MongoDB\Server\3.2\mongod.cfg" --install --serviceName "MongoDB"
This step will create MongoDB service
5. Start MongoDB through this command net start MongoDB
6. Stop MongoDB through this command net stop MongoDB
Ref: https://stackoverflow.com/questions/20796714/how-do-i-start-mongo-db-from-windows
Comments
Post a Comment