Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to configure distributed mongodb installation in windows?........

share|improve this question
What does this have to do with PHP and MySQL? – ceejayoz Dec 30 '10 at 14:23

1 Answer

You can install mongodb on Windows as service, for example:

  • download mongodb: http://www.mongodb.org/downloads
  • Unzip into c:\mongo
  • create dir c:\mongo\data
  • create file: c:\mongo\config.txt

    dbpath = c:\mongo\data

    bind_ip = 127.0.0.1

    noauth = true

  • install as windows service from command prompt

    C:> c:\mongo\bin\mongod.exe -f c:\mongo\config.txt --logpath c:\mongo\log.txt --install

  • start service

    C:> net start mongodb

As for distributed installation, there should not be anything Wondows specific. Just follow the documentation (Replication and Sharding) and change your configurations for your needs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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