Top "Mongodb" questions

MongoDB is a scalable, high-performance, open source, document-oriented NoSQL database.

Couldn't connect to server 127.0.0.1:27017

I'm getting the following error: alex@alex-K43U:/$ mongo MongoDB shell version: 2.2.0 connecting to: test Thu Oct 11 11:46:53 Error: couldn't connect …

mongodb
Render basic HTML view?

I have a basic node.js app that I am trying to get off the ground using Express framework. I …

javascript html node.js mongodb express
mongo - couldn't connect to server 127.0.0.1:27017

I am coming from riak and redis where I never had an issue with this services starting, or to interact. …

mongodb pymongo
Query for documents where array size is greater than 1

I have a MongoDB collection with documents in the following format: { "_id" : ObjectId("4e8ae86d08101908e1000001"), "name" : ["Name"], "zipcode" : ["2223"] } { "_…

mongodb mongodb-query
Mongod complains that there is no /data/db folder

I am using my new mac for the first time today. I am following the get started guide on the …

macos mongodb
How do I remove documents using Node.js Mongoose?

FBFriendModel.find({ id: 333 }, function (err, docs) { docs.remove(); //Remove all the documents that match! }); The above doesn't seem to work. …

javascript node.js mongodb express authentication
How do I search for an object by its ObjectId in the mongo console?

I've found this question answered for C# and Perl, but not in the native interface. I thought this would work: …

mongodb
Date query with ISODate in mongodb doesn't seem to work

I don't seem to be able to get even the most basic date query to work in MongoDB. With a …

json mongodb bson isodate
How do I start Mongo DB from Windows?

I have installed MongoDB on my Windows 7 (64 bit) machine. I have created the path data/db too but when I …

mongodb connection windows-7-x64
How to stop mongo DB in one command

I need to be able to start/stop MongoDB on the cli. It is quite simple to start: ./mongod But …

mongodb