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

Cannot connect Robomongo using MongoDB docker image

I am running mongo docker image that I pulled from docker hub mongo image It works ok but when I start Robomongo I cannot connect to localhost. With following error message: Cannot connect to the MongoDB at localhost:27017. Error: Network is…
emre01
  • 125
  • 1
  • 12
10
votes
3 answers

Log to console In Mongodb

When I run this command in robomongo, I get a output with different rows: db.getCollection('houses').find({}) Now I tried to run the same command in the mongo shell: I wrote a script mongo.js: conn = new Mongo(); db =…
John Smith
  • 5,275
  • 12
  • 44
  • 91
9
votes
1 answer

How to export connections in Robo 3T (Robomongo)

Is the any better way to share connection settings from Robo 3T by avoiding just copy-pasting of each connection details? I didn't find anything in menu of Robo 3T.
Alex.K.
  • 3,342
  • 13
  • 38
  • 44
9
votes
4 answers

MongoDB 4.2.1 - updateMany: Error: the update operation document must contain atomic operators

So I have this issue with mongodb 4.2.1 using Robo 3T. I want to update specific documents, by moving a field inside another one which is an object. Using update() like this works fine. db.getCollection('myCollections').update( { …
A.Fe
  • 171
  • 1
  • 6
9
votes
2 answers

How to connect aws VM running mongo DB to robomongo on windows machine?

I am trying to access my mongodb databases which are running on VM on amazonaws. I am trying to connect through robomongo. Getting can not connect. I have checked that mongoDB listening to 27017 and commented bind_ip = 0.0.0.0 to #bind_ip = 0.0.0.0…
hardik dave
  • 93
  • 1
  • 5
9
votes
2 answers

MongoDB 3.0.1 problems with auth - RoboMongo

I have install MongoDB 3.0.1 in a server (Ubuntu14.04). I need to enable remote authentication for my MongoDB, so that it can only be seen by registered user. Once installed Mongo, I have run these commands: > use admin switched to db products >…
Manu
  • 642
  • 2
  • 9
  • 22
8
votes
5 answers

How can I save new Date() in MongoDB?

When I save a date time in MongoDB using the following format, it shows: Error "Unable to parse JSON" { "_id" : ObjectId("58cb759805aeeae37a56dd3d"), "name" : "Plutus", "admin" : "type 1", "created" : new Date() } Please help me to save…
Raheel Aslam
  • 521
  • 1
  • 6
  • 22
8
votes
1 answer

MongoDB: Find an object by its ID without knowing the collection

I have an mongodb databse with 100+ collections. I'm trying to find an object, with a known ObjectID, that belongs to some (unknown) collection of this database. I tried to do: db.getCollectionNames().forEach(function(collname) { var object =…
user41951
  • 113
  • 1
  • 8
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
8
votes
2 answers

Insert document with date into collection in Robomongo

I am working with Robomongo, where I am manually inserting an object. I want to have a field on my object, which is the current date. Normally I am used to use Date.now() in Javascript. However, when I use the insert document form in the Robomongo…
Lars Holdgaard
  • 8,386
  • 20
  • 85
  • 170
7
votes
4 answers

Robomongo: Connection error. Uninitialized Mongo scope

The connection opens successfully (with authentication). The Database and the collection are displayed. But if I open any shell I got this error: Connection error. Uninitialized mongo scope. The connection with the Mongo.exe and Java-Driver works…
user7482355
7
votes
2 answers

How to search for document by id in Mongo Explorer plugin of php storm

I use both robomongo and rockmongo as clients for mongo dbs.. suppose I got a collection called Drivers, then searching by id is quite easy: db.Driver.find({_id:ObjectId('51118447b38639a960000002')}) I recently installed a mongo plugin for Php…
abbood
  • 21,507
  • 9
  • 112
  • 218
6
votes
3 answers

How to connect MongoDB which is running on Kubernetes cluster through UI tools like MongoDB Compass or RoboMongo?

I have multiple instances of Mongo db deployed inside my kubernetes cluster through helm packages. They are running as a service, in NodePort. How do I connect to those Mongo db instances through UI tools like MongoDB Compass and RoboMongo from…
Shruthi Bhaskar
  • 924
  • 3
  • 9
  • 29
6
votes
4 answers

MongoDB- Error1053: the service did not respond to the start or control request in a timely fashion

When I try to connect mongdb service i am getting error: ** Windows could not start the MongoDB service on Local Computer ** Error1053: the service did not respond to the start or control request in a timely fashion Mongodb installed path:…
N15
  • 265
  • 3
  • 14
6
votes
1 answer

Convert ObjectId to String and vice versa inside MongoDB aggregate map

I have the following document in a collection: Input: { "_id" : ObjectId("***"), "oldItems" : [ { "_id" : ObjectId("***"), "name" : "ItemId***", "nestedItemsToExtract" : { } } ] } I…
Mikhail
  • 8,851
  • 4
  • 31
  • 48
1
2
3
25 26