Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I realize you've already accepted an answer for this, but I wrote this short howto article to install mongodb into the <code>c:\wamp</code> directory and run it as a service. Here is the gist of it.</p> <p>Create these directories</p> <pre><code>mkdir c:\wamp\bin\mongodb\mongodb-win32...2.x.x\data mkdir c:\wamp\bin\mongodb\mongodb-win32...2.x.x\data\db mkdir c:\wamp\bin\mongodb\mongodb-win32...2.x.x\logs mkdir c:\wamp\bin\mongodb\mongodb-win32...2.x.x\conf </code></pre> <p>Download and extract win32 binaries into c:\wamp directory along side mysql, apache.</p> <p><a href="http://www.mongodb.org/downloads" rel="noreferrer">mongodb download page</a></p> <p>Create a mongo.conf file</p> <pre><code>c:\wamp\bin\mongodb\mongodb-win32…2.x.x\conf\mongodb.conf # mongodb.conf # data lives here dbpath=C:\wamp\bin\mongodb\mongodb-win32...2.x.x\data\db # where to log logpath=C:\wamp\bin\mongodb\mongodb-win32...2.x.x\logs\mongodb.log logappend=true # only run on localhost for development bind_ip = 127.0.0.1 port = 27017 rest = true </code></pre> <p>Install as a service</p> <pre><code>mongod.exe --install --config c:\wamp\bin\mongodb\mongodb-win32...2.x.x\conf\mongodb.conf --logpath c:\wamp\bin\mongodb\mongodb-win32...2.x.x\logs\mongodb.log </code></pre> <p>Set service to automatic and start it using services.msc</p> <p>Add path to mongo.exe to your path</p> <p>Need more details? Read the full article here...</p> <p><a href="http://www.pronique.com/blog/installing-mongodb-on-windows-the-wamp-way" rel="noreferrer">Installing MongoDB on Windows the WAMP way</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload