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
10
votes
3 answers

Authentication during connection to MongoDB server instance using Java

Is it possible to make something like : MongoClient mongo = new MongoClient(ip, port, usrName, password) in JAVA similar to the MongoVUE or other SQL based databases' authentication method. There the authentication is done during connection to DB…
rok
  • 9,403
  • 17
  • 70
  • 126
9
votes
1 answer

MongoDB Aggregation Error "each item in the pipeline must be a document"

I have a MongoDB aggregation that looks like this: [ { "$match": [ {"Created": {"$gte": ISODate("2014-01-10T00:00:00Z")}} ] }, { "$group": { "_id": [ {"year":…
james.schend
  • 107
  • 1
  • 3
8
votes
5 answers

mongodb version 3.0.0 client robomongo mongovue

We are using mongo client tools such as Robomongo and MongoVUE from our windows/mac machines. On the mongodb server side, we decided to try out the new MongoDB 3.0.0rc8 with wiredtiger storage. However, we find that we are not able to list any…
Archanaa Panda
  • 201
  • 2
  • 8
7
votes
1 answer

MongoVue date search adds 1 to month

Okay I am pretty sure this thing must be a bug... I have to enter the month previous to what I am looking for: { "SportId":"Horse Racing", "Date":{$gt: new Date(2012,11,4)} } Explain output: [ 15:21:39 ] db.Fixture.find({ "SportId" : "Horse…
Matt Canty
  • 2,395
  • 5
  • 35
  • 50
6
votes
2 answers

How do I use the aggregation framework in MongoVUE?

Is there a way to use aggregation framework in the latest version of mongoVUE? The only option which looks like an aggregation framework is GROUP option but I was not able to figure out how to use it. Can someone tell me, am I looking in the right…
Salvador Dali
  • 214,103
  • 147
  • 703
  • 753
4
votes
1 answer

Is there a way to run arbitrary command in MongoVUE

I was looking for a way to execute an arbitrary command in MongoVUE: db.collection.runCommand(..), but was not able to find anything. I am using the latest (at the time of asking) version 1.6.1.0. There is nothing in the context menu as well as in…
Salvador Dali
  • 214,103
  • 147
  • 703
  • 753
3
votes
1 answer

Are there any up to date Mongo GUI's left?

This type of question has been asked before but needs a serious update. I'm looking for an up-to-date mongodb gui that supports v3.0.x. Ideally it would also support connection to a MongoDB v3.0.x on a mongos instance over SSL. AFAIK, none…
wlingke
  • 4,699
  • 4
  • 36
  • 52
3
votes
1 answer

Unable to download mongovue

As of checking today, it looks like http://www.mongovue.com/, is down. Was wondering if anyone knew if this was being deprecated or an appropriate transition plan if that is not the case? Thank you in advance.
CasualT
  • 4,869
  • 1
  • 31
  • 53
3
votes
0 answers

How does MongoVUE "copy collection to different server" feature work?

I need to know how the MongoVUE "copy collection to different server" feature (right-click on a collection node and the option is available in the context menu) works. I want to compare it from a performance point of view to the…
Andrei Nicusan
  • 4,555
  • 1
  • 23
  • 36
3
votes
1 answer

Sort by embedded document

Iam trying to sort some documents by a date of a embedded document. My documents looks like: [ { name: 'item1', slots: [ { date : ISODate("2013-01-18T23:00:00Z") }, { …
tschiela
  • 5,231
  • 4
  • 28
  • 35
3
votes
2 answers

Setting up CentOS firewall for remote MongoVUE GUI access

I'm trying to set-up MongoVUE to connect to a networked server running MongoDB. I can connect to it very easily either via SSHing in Putty or using mongo ip:port in windows command line. However, when setting up a connection via MongoVUE's SSH…
LittleBobbyTables
  • 4,361
  • 9
  • 38
  • 67
2
votes
2 answers

Simple Map/Reduce MongoVUE

I am trying to get a simple map reduce working in MongoVUE, but it doesn't return any results, I just want to get it to output the count of each userID just so I can have a working example to build from. function Map() { emit( this.UpdatedBy.UserId,…
Dorf
  • 229
  • 6
  • 15
2
votes
2 answers

Removing specific sub-document from collection in MongoDB using MongoVUE

Removing a 'key' from a document with MongoVUE is easy - just right click in view mode and select 'remove'. However, no such option seems to exist if you want to delete a whole subdocument from a colletion. Does anyone know if there is a…
UpTheCreek
  • 31,444
  • 34
  • 152
  • 221
2
votes
1 answer

Create a backup file with MongoVUE

Is there a way to create a back file of an entire database using MongoVUE? I can't see anything in the UI to do this
user441365
  • 3,934
  • 11
  • 43
  • 62
2
votes
0 answers

How to remove a "document" in MongoDB using MongoVUE?

I'm trying to remove an object on my mongodb using mongovue, but I keep getting the following error. Please help and let me know what I'm doing wrong? I right click on the document, hit 'Remove', and I get a window with this: See the end of this…
Tam N.
  • 2,687
  • 9
  • 30
  • 29
1
2 3