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

416 questions
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
  • 770
  • 1
  • 10
  • 33
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
  • 698
  • 7
  • 19
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,855
  • 3
  • 19
  • 34
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.
  • 7,816
  • 20
  • 80
  • 154
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
  • 5,776
  • 9
  • 54
  • 68
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
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
  • 2
  • 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
  • 673
  • 4
  • 17
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
  • 33
  • 2
  • 10
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
  • 35,401
  • 16
  • 78
  • 107
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
  • 735
  • 7
  • 19
0
votes
0 answers

how to migrate SQL server's data to mongoDB?

I am trying to migrate my database from SQL server to mongoDB, I've exported tables from my database, and wrote the corresponding mongoDB import function for it: mongoimport -d dashboard -c col --type csv --file "C:/Users/sesa356116/text.csv"…
Karishma Dudhbade
  • 601
  • 5
  • 11
  • 12
0
votes
0 answers

assign sub-id to array elements

I'm trying to add sub-id to my array elements but I get an error when I try to save this object using Robomongo: { "_id": ObjectId("540098e2c9502ce88820bfc3"), "foo": "bar", "objects": [ { "_id": new ObjectId(), "name": "a" …
Fez Vrasta
  • 14,110
  • 21
  • 98
  • 160
-1
votes
1 answer

Robo3t application not starting up from gui as well as terminal in Ubuntu 22

I've upgraded my system from Ubuntu 20.04.5 to Ubuntu 22.04.2. After the upgradation, it's failing to start/open robo3T application. I tried opening it from GUI as well as the terminal. I don't get any error when I try to open it from GUI, While I…
Vipul Patil
  • 1,250
  • 15
  • 27
-1
votes
1 answer

While connecting from Mongo Client in Windows VM to Mongodb 4.4 in Mac host OS, receiving "Timed out after 5000 ms while waiting to connect"

Mongodb 4.4.14 is intalled in Mac OS Monterey version 12.4. Connection from Robo 3T installed in Mac itself works. Connection from mongo cli in mac itself also works: $ mongo MongoDB shell version v4.4.14 connecting to:…
Hitesh
  • 121
  • 3
  • 14
1 2 3
27
28