In order to get sharding to work I need to run two copies of mongod.exe. One as a shard and one as the config server. How can I install both mongod instances as windows services?

link|improve this question

2  
I thought you would be able to do this with the --serviceName command line option, but even with unique Service Names the Display Name is still "Mongo DB" and there is a clash. This seems to be a bug. See jira.mongodb.org/browse/SERVER-1590 – Martin Owen Aug 20 '10 at 13:16
1  
Eliot merged my patch for SERVER-1590 a while back so the lates 1.7.x series has it. Unfortunately, it is likely not to be merged into 1.6.4 or 1.6.5. However, 1.8 (stable) should be released in December. – Justin Dearing Nov 12 '10 at 11:14
feedback

3 Answers

Use sc.exe from the Windows Resource Kit ( http://support.microsoft.com/kb/251192 ) which allows you to specify an unique display name for each instance:

sc.exe create "Mongo DB 1" binPath= "c:\mongodb\bin\mongod.exe --service --dbpath=c:\data\db --logpath=c:\data\log.txt"

link|improve this answer
The problem is that the service and display name need to be unique. This is (was) a bug in mongo. – Detroitpro Dec 29 '10 at 4:25
feedback

Mongo added a --serviceDisplayName flag in 1.8

link|improve this answer
--serviceDisplayName doesn't suffice, you will eventually incour in service name and data file collisions – Hemme Feb 14 at 8:36
feedback

The following command line will install a 2nd instance of Mongo DB. Note that you have to provide serviceName, serviceDisplayName, port, dbpath and logpath in order to avoid collisions.

mongod --install --serviceName "Mongo DB 2nd instance" --serviceDisplayName "Mongo DB 2nd instance" --port 37017 --dbpath c:\data\db2 --logpath c:\data\logs\mongolog2.txt

Then you just start the service with

net start "Mongo DB 2nd instance"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.