PMXBOT Log file Viewer

Help | Karma | Search:

#mongodb logs for Sunday the 21st of September, 2014

(Back to #mongodb overview) (Back to channel listing) (Animate logs)
[04:59:13] <rjsalts> I'm trying to convert from a replicaset to standalone. I used the Reconfigure by Turning Off Replication steps from http://docs.mongodb.org/manual/tutorial/reconfigure-replica-set-with-unavailable-members/
[04:59:48] <rjsalts> but when I start up I still get WARNING: mongod started without --replSet yet 1 documents are present in local.system.replset when I connect
[05:01:11] <rjsalts> The "Create a backup of the data directory (i.e. dbPath) of the surviving members of the set." seems rather ambiguous, they just mean create a copy of the files, right?
[12:43:56] <tomelders> hi all, would this be the place to come for mongodb help?
[17:13:54] <ome> Does mongod depends on any other binary?
[17:41:50] <skot> not really: libc/stdlib, openssl/sasl (if you use it)
[17:57:45] <karatechopdog> Hey.. is it possible to query a string against a stored regexp field without using a custom $where function?
[20:27:50] <Agemaniac> hello all!
[20:28:34] <Agemaniac> im using pymongo, and i want to edit a username in a collection, how can i do it? i have tried different metods without success
[20:29:07] <Agemaniac> >>> jaime = db['users'].find_one({'username' : 'testforjaime'})
[20:29:09] <Agemaniac> >>> print jaime
[20:29:11] <Agemaniac> {u'username': u'testforjaime', u'_types': [u'User', u'User.User'], u'password': u'bcrypt|||$2a$12$/0jBScUFm6EWT07iA7SIv.|||$2a$12$/0jBScUFm6EWT07iA7SIv.Sc4LQP/t9.KphwrfBFICGIKQByouxRm', u'is_active': False, u'last_login': 1411223141741L, u'_cls': u'User.User', u'_id': ObjectId('541d8e6698c95c0a80659d9c'), u'date_joined': 1411223141741L}
[20:29:12] <Agemaniac> >>>
[20:29:40] <Agemaniac> i get my collection, but when i use :
[20:29:49] <Agemaniac> db.users.update({'username':'testforjaime'},{'$set':{'username': "jaime"}},upsert=False, multi=False)
[20:29:51] <Agemaniac> nothing changes
[20:29:56] <Agemaniac> anyone idea?