[转]修改注册表将MongoDB添加到系统服务

[转]修改注册表将MongoDB添加到系统服务

http://www.webiyo.com/2011/02/install-mongodb-service-on-windows-7.html

Download MongoDB

You can download MongoDB in two different editions viz. 
32bit MongoDB direct download | 64bit direct download

Installation – Initial Setup

  1. Download & Extract MongoDB anywhere.
  2. Rename & Copy folder structure to c: drive.
  3. Like, C:mongodb165
  4. Add folder 
    C:mongodb165data 
    and 
    C:mongodb165logs
  5. Add log file mongolog.txt here at, 
    C:mongodb165logsmongolog.txt

MongoDB Windows Service Installation

  1. Go to C:mongodb165in
  2. Run mongod.exe with given parameters 
    mongod --install --auth --rest –master –logpath=C:mongodb165logsmongolog.txt
  3. Edit registry Settings, run regedit from Start menu.
  4. Go to 
    HKEY_LOCAL_MACHINE >> SYSTEM >> CurrentControlSet >> services
  5. Find out MongoDB directory & edit ImagePath key
  6. Set value as 
    C:mongodb165inmongod --service  --rest  --master  --logpath=C:mongodb165logsmongolog.txt  --dbpath=C:mongodb165data
  7. Save and exit registry editor.
  8. Open ComponentServices from Start >> Run
  9. Click on Services(Local) & find out MongoDB service
  10. Start the service as described below.

    [转]修改注册表将MongoDB添加到系统服务

  11. Check at http://localhost:28017/ to see , MongoDB should return stats.

It is advisable to 64 bit edition of MongoDB if you are running 64bit OS. 
32bit system has it’s own limitations.

Comments are welcomed !!!