Questions tagged [robo3t]

Robo 3T (formerly Robomongo) is a shell-centric cross-platform MongoDB management tool.

The Robo 3T (formerly Robomongo) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.

Useful links

389 questions
0
votes
2 answers

Find connection string for Robomongo connection settings to an Azure MongoDB

In my app i'm using node with mongoose to connect to MongoDB. The MongoDB instance is in Azure. I'm needing the above so I can connect directly to the database. After looking at this to do it: How to connect Robomongo to MongoDB I'm using…
sledgeweight
  • 5,645
  • 5
  • 25
  • 42
0
votes
0 answers

Remove duplicate in MongoDB using two properties

it might look like a duplicate question but actually it is not. I have a mongoDB database with some French towns in it (omelette du fromage), but the file from which I got those seems to have duplicate. At first I use this method to remove towns…
Mowso
  • 73
  • 12
0
votes
1 answer

Authenticate MongoDB along with Robomongo

I'm currently using Robomongo when accessing my mongodb database. I have created a admin account on mongodb who has admin access to any db. I would like to be able to ONLY login with the credentials of the admin account. Now I can just login…
Maxim
  • 641
  • 5
  • 10
0
votes
1 answer

Mongodb cannot be accessed from Developer Machine

So, This could be a beaten to dead question, but i am posting it here because i dont have and answer and would need your help on this. I have my Dev application Mongo DB in a server. I can remotely login to the server. If i install Robomongo in…
Night Monger
  • 700
  • 1
  • 8
  • 24
0
votes
0 answers

New Database and Collections Auto Drop Using RoboMongo for MongoDB

I'm doing this node.js tutorial and encountered problems when trying to create a new database and collection using Robomongo for MongoDB. It seems that any new database/collection gets automatically dropped when I add it (see screenshot). I added…
josh1978
  • 607
  • 6
  • 17
0
votes
1 answer

Mongoose: retrieving array of ObjectIds from collection

My database has following type of documents for Categories collection. { "_id" : ObjectId("56716afa403743492828aa07"), "cat_name" : "watches", "cat_parent_id" : [ ObjectId("56716afa403743492828aa01"), …
Sandeep Sharma
  • 1,537
  • 2
  • 12
  • 33
0
votes
0 answers

MongoDB authentication fails through Robomongo+CLI

The following users were generated using Robomongo 0.8.5 connected to MongoDB 3.0.7. The problems: With users generated in Robomongo it is not possible to log in through CLI. With users generated in CLI it is not possible to log in through…
Peter G.
  • 6,748
  • 14
  • 67
  • 134
0
votes
1 answer

MongoDB - How to make a query to get the average usage?

Here is how the documents in db look like. /* 1 */ { "_id" : 1, "feat" : { "processName": [ { "value" : { "value": "Process1" } } ], "processUsage": [ { …
user2965601
0
votes
2 answers

Querying for specific objects in a document & Visualization - MongoDB

I have a complex geojson document stored in my MongoDB. My goal is to retrieve the objects that apply to my condition e.g: I want to retrieve the objects that contain "avenue" in the 'features.properties.name'field. I have tried this:…
Menelaos Kotsollaris
  • 4,517
  • 6
  • 50
  • 61
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
  • 667
  • 2
  • 5
  • 18
0
votes
1 answer

Find all data for a specific element in my array

I'm new to MongoDB. I've imported a json file into my MongoDB. The structure looks like the following: What I'm trying to do is get all the data for player 0, player 1,.. etc but I don't know how my db.collection.find should look.
Joeri Boons
  • 79
  • 1
  • 8
0
votes
0 answers

Passing a variable argument in db.eval function in mongodb

I am adding a server side java-script code in mongodb (using robo mongo). I have created two function 1: pow(a) which returns the square of a number 2: findSq() which return any number from 1 to 20. I am calling pow(a) form findSq() function eg …
Vishu238
  • 643
  • 4
  • 13
0
votes
1 answer

How can i insert current date in robomongo?

I want to add a date field in mongo db. I am using robo mongo. How can i do that? If it is a string we can do it by "", if it is a number we can do it by NumberInt. What is the datatype for date field? Also, how can I insert current date?
Syed
  • 31
  • 9
0
votes
0 answers

MongoDB - Shell Scripting - $in usage in $ref

How can I use the $in correctly in $ref? cursor = db.MyCollection.find({ "player": { "$ref": "Contact", "$id": { $in: [ObjectId("556d901118bfd4901e2a3833"), ObjectId("556d901118bfd4901e2a3833")] } ^ it executes…
Murat Karagöz
  • 26,294
  • 9
  • 70
  • 97
0
votes
1 answer

Mongo 3.0.1 DB Auth/Connection problems. Mongo console Yes, everything else No

I have MongoDB 3.0.1 installed on Windows 7 Pro 64bit. Everything that I am doing is being done on this server itself, all connections are via 127.0.0.1:27017. And yes, I have applied the MS Hotfix that was recommended to do by MongoDB. Here is my…
Warren
  • 713
  • 7
  • 18
1 2 3
25
26