[01:39:24] <StephenLynx> where are you running that command?
[01:39:25] <serversides> For some reaosn install mongodb in ubuntu 14.04 is an absolute nightmare. I have reinstall so many times and can only start with sudo service mongodb start. Sudo service mongod says its starting then fails right away
[01:39:53] <serversides> I have ran mongodb, then in another shell I have typed in mongo to open the mongodb console
[01:44:46] <StephenLynx> yum is a much better package manager too
[01:45:05] <serversides> Thanks for the advice. Been using Ubuntu for years, always stuck with it because I knew it better
[01:45:53] <serversides> I know a lot of shared web hosts use CentOS, which makes sense from your above statement.
[11:53:22] <ren0v0> Hey, i have profiling enabled on my database, and i have some slow queries there that i'm trying to improve. I've added indexing and now when i run a query from shell the are down to 10ms (from 200ms). However, i'm still getting the slow queries logs to system.profile.... They are 200ms in the logs, but if i run the exact query from shell its only 10ms ?
[11:57:07] <ren0v0> turns out i was looking at old logs like a dumbass :D
[11:57:24] <ren0v0> What else would cause high CPU with mongo, if i now have no slow queries?
[12:52:58] <PedroDiogo> the code is pretty simple and my server log does catch its attempt...but if fails "2015-12-19T12:37:47.946+0000 I ACCESS [conn7665] SCRAM-SHA-1 authentication failed for userHere on myDb from client 10.0.0.10 ; AuthenticationFailed SCRAM-SHA-1 authentication failed, storedKey mismatch"
[12:53:28] <PedroDiogo> (the uploaded coded might have some syntax erros as I was trying to hide some sensitive info)
[12:55:21] <PedroDiogo> I don't know whats happening and I dont know what else I can do... I've checked mongodb's driver version and it does work with SCRAM (v. 2.0.52) and my mongod's Replica Set v. is 3.0.7
[13:09:07] <PedroDiogo> any feedback would be much appreciated
[13:28:01] <Rashad> My original question was: is this a mongo-express issue and in the actual database there is only one document, or is this a mongodb thing in which the object has order when it is stored?
[13:28:03] <Derick> but yes "can have two separate documents each with one order of the object"
[13:54:10] <vak> mongodb 3.2 doesn't want to list my databases created with mongodb 2.x using 'show dbs'. The pathDb and the permissions seem to be correct. Log file shows that mongodb detects some mmapv1 data, but nothing more... Any hint on how to access the old data?..
[17:46:18] <robsco> I'm currently using MySQL to do something I hope MongoDB will be faster at, any thoughts?... I load a temp table with around 10 columns of product data (name, price, description, etc), I then copy that data to another table, where duplicates are found, I set a "last_seen" datestamp, and also update an "updated" timestamp IF any of the columns actually changed. Since there's no real SQL needed, and I'm
[17:46:19] <robsco> dealing with 200m docs in total (in batches of around 30m), is MongoDB the clear choice?
[17:47:10] <robsco> I need to keep a track of when I haven't seen a document for X-days, so I can then delete those, and also need to record which docs actually get updated during each run
[20:07:30] <Spynxic> Is anyone aware of a way to iterate over each item in an array without first loading the entire array into memory? (using pymongo)
[20:27:40] <Spynxic> Is anyone aware of a way to get the length of an array without first loading the entire array into memory? (using pymongo)