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?
feedback
|
|
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:
| |||
feedback
|
|
Mongo added a --serviceDisplayName flag in 1.8 | |||
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.
Then you just start the service with
| ||||
|
feedback
|