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

Connecting Robo 3T to Docker MongoDB container

As part as an attempt to resolve a Hibernate OGM connection issue, I want to see if I connect from Robo 3T. I build my MongoDB image and start it running. docker ps: MacBook-Pro:GoStopHandle NOTiFY$ docker ps CONTAINER ID IMAGE COMMAND …
NOTiFY
  • 1,255
  • 1
  • 20
  • 36
11
votes
6 answers

Robomongo: Cannot connect to replica set. Set's primary is unreachable

I'm migrating mLab from Heroku to MongoDB Atlas. As one of steps I want to check if there is a connectivity to newly created cluster. I'm used Robo3T (formerly Robomongo) for Heroku mLab instances. But it doesn't work with Atlas. I'm getting…
wowkin2
  • 5,895
  • 5
  • 23
  • 66
11
votes
4 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
  • 6,105
  • 16
  • 58
  • 109
10
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
  • 191
  • 1
  • 7
10
votes
2 answers

How would someone connect their MLAB mongodb database to robomongo when MLAB only provides string URI's

I have been a mongochef user for a while, and setting up URI connections with mongochef is super easy. However this is not the case with robomongo. How would someone connect their MLAB mongodb database to robobongo when MLAB uses string URI's to…
alilland
  • 2,039
  • 1
  • 21
  • 42
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
  • 121
  • 1
  • 13
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
  • 652
  • 3
  • 11
  • 22
8
votes
6 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
  • 305
  • 2
  • 4
  • 17
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
  • 444
  • 1
  • 9
  • 28
8
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
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

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
  • 23,101
  • 16
  • 132
  • 246
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
  • 9,496
  • 26
  • 102
  • 182
7
votes
4 answers

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

I have multiple instances of MongoDB deployed inside my Kubernetes cluster through Helm packages. They are running as a service, in NodePort. How do I connect to those MongoDB instances through UI tools like MongoDB Compass and RoboMongo from…
Shruthi Bhaskar
  • 1,212
  • 6
  • 20
  • 32
1
2
3
27 28