[01:18:17] <cheeser> like so? http://docs.mongodb.org/manual/tutorial/resync-replica-set-member/#replica-set-resync-by-copying
[03:21:45] <Kom> I am coming here because of a scenario I can't quite overcome here with a new MongoDB installation, wherein an account that I created and can authenticate with locally, fails authentication when a remote connection is made. Any advice or resources on why this would be happening?
[16:01:44] <carver404> while using minimongo, i'm getting a "Uncaught error: Base needs _id".. any pointers?
[16:03:04] <cheeser> you'd have to ask the meteor guys.
[16:04:11] <carver404> cheeser: alright! actually i pinged on #meteor but no response yet. so thought someone here might know
[16:05:04] <carver404> cheeser: though the syntax for updating a minimongo is same as mongodb right?
[17:45:47] <tiblock> Hi. I want to make my first project with mongo. Is there security things that i need to know? Like SQL Injection in SQL?
[18:15:56] <dddh> tiblock: have you read books or worked with another nosql db?
[18:16:34] <tiblock> dddh, no, but i saw few exaples and its looks easy. I code in node.js and mongo is like JS based
[18:18:18] <tiblock> dddh, and currently i need database to store different JSON data, so mongo is very good solution i think
[18:20:51] <dddh> btw postgresql also supports json
[19:51:11] <dddh> tiblock: what kind of project? play with map reduce?
[20:13:16] <MacWinne_> is there a simple way to see what queries are hitting my mongodb and are not using an index? Assuming I don't have access to the source code that is making the calls
[20:13:50] <MacWinne_> I'd like to report back to dev that a specific query is doing a full table scan and give them an example of the query causing it so they can fix
[20:13:59] <MacWinne_> or so I can create an index if needed
[20:44:06] <mc_teo> Hey, first time using MongoDB and looking for some quick help (more DB admin, than mongo specific tbh). Say I have 3 collections, based off these http://pastebin.com/Jjxae1Z8 ; I want to try add something like a "read" status to each post, but unique to each user (so users can see all unread posts later). Seems very relational, but is there any nice eloquent way to do it in Mongo?
[20:44:46] <StephenLynx> a field holding a boolean indicating it was already read.
[20:45:17] <StephenLynx> you will have to duplicate information there.
[20:45:19] <mc_teo> My approach was to add a read status to the post, and then just add an array of these to each user, but that means each user has a list of every post
[20:45:37] <StephenLynx> or a list holding all read posts.
[21:13:08] <StephenLynx> so secretary.0 is an object.
[21:21:08] <horsey_> StephenLynx: http://docs.mongodb.org/getting-started/node/insert/: Going by this document, is "grades" an array of objects as well?
[22:05:57] <Lope> On my ubuntu machine I have mongodb 2.6.10. On my Debian Jessie (using wheezy build, it's the newest available) I have 2.4.10. When I do CRUD stuff inside the mongo terminal on 2.6.10 I get a status message after every command telling me how many matched, updated, modified etc. But on 2.4.10. It doesn't give any status at all. How can I see a status after every command?
[22:13:36] <Derick> Lope: you can't, that is new in 2.6
[22:16:07] <Lope> Oh, how can I run a newer version of mongo on Debian Jessie?