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
4
votes
1 answer

MongoDB: cannot perform bulk operation

I am trying to play with bulk operations in MongoDB but keep getting the following error: TypeError: db.items.initializeUnorderedBulkOp is not a function (shell):1 ... when executing this line in shell: var bulk =…
Eugene Loy
  • 12,224
  • 8
  • 53
  • 79
4
votes
2 answers

Can't Access MongoDB instance hosted in Google Cloud VM from RoboMongo

I have created a project and deployed MEAN stack by using "Click to Deploy". When I visit <> / 3000 I do see the MEAN page coming from the server. Also I can ssh to that machine and see all the stuff there. I can access MongoDB instance in that…
rahul
  • 3,018
  • 4
  • 29
  • 28
4
votes
2 answers

Connect Robomongo to Virtual Machine

I have a problem. I'm using Virtual Box with RHEL (Red Hat Enterprise Linux) and I've installed a MongoDB and an Oracle-XE database. I'm trying to connect to my DBs from my Windows OS. I can connect to my oracle DB using SQL Developer, however when…
SaintLike
  • 9,119
  • 11
  • 39
  • 69
3
votes
2 answers

I am getting "GetLastError command failed: getLastError command is not supported" while trying to insert document in Robo3T under collections

I am getting error while trying to insert document in Robo3T but the document is successfully getting added to the list after clicking on OK. Error message : GetLastError command failed: getLastError command is not supported Not sure as the same…
Bharadwaj
  • 31
  • 2
3
votes
3 answers

How to fix SSL Tunnel Failure when using Robo 3T to connect to MongoDB Atlas

I am trying to connect to a MongoDB Atlas database using Robo 3T following the directions at: https://mrvautin.com/connecting-to-mongodb-atlas-with-robo-3t/ I get an SSL Tunnel Failure message as shown below: I have verified that I can connect to…
Philip Johnson
  • 1,463
  • 2
  • 11
  • 20
3
votes
0 answers

How to fix mongodb Error: Network is unreachable

I get this error, when I try to connect to MongoDB Error: Network is unreachable. Running mongod before mongo shell didn't help . When I restart my computer it works!!!Anyway I get that error again, something like 30 minutes later. This is output…
3
votes
1 answer

How to delete multiple collection in Robomongo

I am using Robomongo for MongoDB. In my Robomongo I have multiple duplicate collections. Now I want to delete each collection at a time without any query and ForEach function.
N.chauhan
  • 263
  • 1
  • 8
3
votes
0 answers

Mongodb toCSV() function in Robo3T with nested items

I am trying to extract data from a query in Mongodb with nested items. Example: { '_id': 1111, 'identity': { 'name': 'John' 'surname': 'Doe' } } We need a query to extract all surnames into a CSV. So, as I'm using Robo 3T tool, I…
Belen
  • 673
  • 2
  • 10
  • 25
3
votes
1 answer

mongodb Network is unreachable on mac

Sorry I have ask the same question again from Robo 3T Error : Network is unreachable Beacause I really can't find out the file /etc/mongod.conf. My machine is mac and use homebrew install mongodb. There is no mongod.conf in my path…
Morton
  • 5,380
  • 18
  • 63
  • 118
3
votes
1 answer

Error when inserting Documents with for Loop

When I try to add some Documents to a Collection, exactly 1 of 4 times I get an Error. for (var i = 0; i < 50; i=i+1){ db.SampleOrder.insert( { "SampleId": NumberInt(i), "PuckId": NumberInt(i) }); } Error: Picture of…
noscript
  • 77
  • 1
  • 12
3
votes
2 answers

convert mongoDB Collection to mySQL Database

I was created my project in spring 4 MVC + Hibernate with MongoDB. now, I have to convert it into the Hibernate with MySQL. my problem is I have too many collections in MongoDB the format of bson and json. how can I convert that file into MySQL…
Harsh
  • 243
  • 3
  • 20
3
votes
0 answers

Connect to Robomongo in a network proxy

I had some connections on Robomongo that worked well, because network didn't have any type of restriction. Now, in the company, network is very restricted and they gave us a Network proxy and some specific IP's, but now, robomongo doesn't allow me…
Jimmy A. León
  • 541
  • 3
  • 6
  • 22
3
votes
1 answer

MongoDB aggregate: multiple group + elements array

The structure of the documents looks like this: "_id" : ObjectId("581496e8564627c098e41755"), "startdate": somedate, "enddate": somedate, "userId" : 1, "activity" : "activity1", "measures" : [ { "M1" : 99, "M2" : 103, …
alve
  • 47
  • 6
3
votes
2 answers

MongoDb find query giving weird response

I am trying to search data in mongodb with nodejs. This is my query collection.find({ age: { '$gt': 20 } }); its working fine in robomongo but giving me this response in my application Readable { pool: null, server: null, disconnectHandler: …
Abdul Bari
  • 149
  • 1
  • 2
  • 12
3
votes
1 answer

forEach doesn't iterate all collection in mongodb

I need to compare two collections of objects from mongo db. My shell script looks like this: //Both arrays have 367 pretty big objects. var list1 = db.collection1.find({..condition..}).toArray(); var list2 =…
Eugene
  • 127
  • 1
  • 2
  • 8