Questions tagged [mongovue]

MongoVUE is a GUI based query and management tools used to connect to a MongoDB database.

MongoVUE is a GUI based query and management tools used to connect to a database. MongoVUE has a trial period with limitations when it ends.

References

42 questions
1
vote
1 answer

MongoDB Map Reduce Exclude When Count = 0

In my map reduce which gets a count I don’t want the document to show up in my results where the count is 0 so how can I exclude them from showing up in the results, I assume I would do it in the Finalize function but how do I delete the document…
Dorf
  • 229
  • 6
  • 15
1
vote
1 answer

How to create a tree representation of generic JSON data in HTML?

I have some data stored in JSON format. I would like to be able to display it in a browser as a dynamic tree structure in a similar way MongoVUE presents the mondodb documents: Screenshot I have found a very nice jquery plugin, called jsTree.…
Alex Fedulov
  • 1,442
  • 17
  • 26
1
vote
1 answer

Failed to connect MongoDB 3.X with MongoVUE

I am running MongoDB on windows8.1 and created users for admin database. For convenience, I use mongoVUE to check data. But after turning on the "auth" function. I cannot logged in. Actually, I can use the username and password to authenticate with…
Tylor_E
  • 31
  • 6
1
vote
1 answer

Failed connection in MongoVUE

I'm trying to create a new connection in MongoVUE but I have an error : "Connection was refused". The connection configuration is: Name: database Server: 127.0.0.1 Port: 27017(default) Username:admin Connection was refused Unable to connect to…
Andrii Pryimak
  • 797
  • 2
  • 10
  • 33
1
vote
1 answer

MongoDB: Element "sysinfo" not found

We successfully installed mongodb. However when we try to connect to it from Mongo Vue we are receiving following error. Any idea how to resolve this? Connection was refused Unable to connect to server Frontier:27017: Element 'sysInfo' not…
1
vote
0 answers

Exclude duplicates via MongoDB MapReduce

I am trying to create a Mapreduce function, which will exclude duplicates from a collection. This is an assignment and I'm new to MongoDB, so I apologize if my code is not very "pretty"; also, for all that matters, I'm using MongoVUE. I have a…
PLB
  • 881
  • 7
  • 20
1
vote
0 answers

Creating a Time to Live index using MongoVue

MongoVue 1.6.9.0 I am using MongoVue to connect to MongoDB. I need to create a TTL index on a collection which I tried to create using "Add New Index". Once I create the index by adding { "createdOn": 1 }, { expireAfterSeconds: 3600 } The learn…
Abhi
  • 6,471
  • 6
  • 40
  • 57
1
vote
1 answer

MongoVUE Bulk Insert

I'm trying to insert multiple documents using MongoVUE by passing an array of documents in the Insert Document window. For example: [ {"name": "Kiran", age: 20}, {"name": "John", "age": 31} ] However, I kept getting the following error:…
krisze
  • 13
  • 4
1
vote
1 answer

Declaration of variable unsuccessful in MongoDB shell

Here is my document: { $set: {"paths.0.pathBreak" : { "1": { "Key1" : [66.92, 22.34], "Key2" : "Val2", "Key3" : [64.92, 22.34], "Key4" :…
rahulserver
  • 10,411
  • 24
  • 90
  • 164
1
vote
1 answer

Replica Sets with MongoVUE

I want to get MongoVUE set up to work with replica sets. I have followed the instructions found in the link below at step 2(b). http://www.mongovue.com/2012/03/26/establishing-connections-to-servers-and-replica-sets-using-mongovue/ However all I get…
Matt Canty
  • 2,395
  • 5
  • 35
  • 50
1
vote
1 answer

Delete specific document from collection

Is there any way to delete or remove document from collection using the GUI?
Jafar
  • 130
  • 3
  • 17
0
votes
1 answer

Database is not appearing in MongoVue

I am using MongoVue and Python library Pymongo to insert some documents. I used MongoVue to see the db created. It was not listed. However, I made a find() request in shell. I got all the inserted documents. Once I manually create DB all the…
Kavitha Madhavaraj
  • 562
  • 1
  • 6
  • 23
0
votes
2 answers

Uninstalled Mongovue by mistake and looking for license file

I uninstalled MongoVue by mistake. I was attempting to move the license from my old PC to a new PC. I went into license manager but there was nothing useful there, I then clicked uninstall expecting a menu but there was no menu. The guy who…
SeanJ
  • 1,203
  • 2
  • 19
  • 39
0
votes
2 answers

Mongo 3.0.5 unable to connect from external client

I have a mongo db instance running in a linux box and i am trying to connect to it from my windows box. When I enable authentication, I keep getting Invalid credential for database 'admin'.. my user setup looks like show users { …
asb
  • 781
  • 2
  • 5
  • 23
0
votes
3 answers

How to find specific key in MongoDB?

I have to find all the documents which include "p396:branchCode" as key in MongoDB.Value does not matter,can be anything.I tried using {"p396:branchCode": new RegExp(".*")} in MongoVUE but i found nothing. My db is very nested and branchCode has…
Wardruna
  • 198
  • 4
  • 23