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
144
votes
16 answers

How to export JSON from MongoDB using Robo 3T

I am using Robo 3T (formerly RoboMongo) which I connect to a MongoDB. What I need to do is this: There is a collection in that MongoDB. I want to export the data from that collection so that I can save it into a file. I used the interface to open…
Undefined Variable
  • 4,196
  • 10
  • 40
  • 69
49
votes
9 answers

How to install Robomongo from tar.gz file as a program in Ubuntu 15.10

Nowadays robomongo developers releasing the new versions of robomongo as tar.gz not in .deb packages that was easy for double click installations. But that option is no longer available. So how to install it as a program in Ubuntu. I have tried…
Praveen George
  • 9,237
  • 4
  • 26
  • 53
46
votes
9 answers

How can I connect to MongoDB Atlas using Robomongo?

I signed up freely at MongoDB Atlas and created cluster now I want to know how can I create database and connect to that using Robomongo?
rocky
  • 737
  • 4
  • 11
  • 19
45
votes
10 answers

How to connect Robomongo to MongoDB

I am have MongoDB and Robomongo in my running system, and I am using Robomongo as the client. I have installed MongoDB on a different system which I am treating as server, and I want to connect Robomongo of my system (as a client) to MongoDB on…
Karishma Dudhbade
  • 601
  • 5
  • 11
  • 12
40
votes
16 answers

Failed to load list of databases

I want to connect to a remote database using Robomongo. I can connect to to database but an error says that: Failed to load list of databases What should I do?
ehsan shirzadi
  • 4,709
  • 16
  • 69
  • 112
33
votes
2 answers

What does authSource means in mongo database url?

i am trying to connect to my mongo database with following connection string var Mongo_url = 'mongodb://MyUSer:tech@localhost:27017/chatme?authSource=admin'; I am getting error as assertionError: null == { [MongoError: Authentication failed.] …
gaurav malik
  • 556
  • 1
  • 6
  • 17
30
votes
15 answers

Robo 3T Error : Network is unreachable

I am trying to connect Robo 3T to my online database and it doesn't seem to be working. I am able to connect to local database with it. I tried connecting using MongoDB Compass and the Details and Auth are working fine and I am able to connect. But…
Hisham Mubarak
  • 1,559
  • 3
  • 22
  • 28
26
votes
5 answers

How to import dump folder into mongodb database?

I have created a mongo dump from a remote server and .bson and .metadata files stored in to a folder. I want to import this folder into my local mongodb. I am using robomongo as a mongodb client ui. I got some command which are importing json files…
Sangram Badi
  • 4,054
  • 9
  • 45
  • 78
21
votes
4 answers

RoboMongo: Doesn't display all documents

When I open a collection, it only displays the first 50 documents rather then all of them. How do I make it so that RoboMongo display all documents in the collection (preferably automatically)? robomongo result
BenSmith
  • 429
  • 1
  • 6
  • 14
19
votes
5 answers

Convert ObjectID to String in mongo Aggregation

I'm in this scenario right now: I have a collection X: { _id:ObjectId('56edbb4d5f084a51131dd4c6'), userRef:ObjectId('56edbb4d5f084a51131dd4c6'), serialNumber:'A123123', ... } I need to aggregate all documents, grouping them by the userRef +…
17
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 Kulinkovich
  • 4,408
  • 15
  • 46
  • 50
14
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
  • 182
  • 1
  • 1
  • 10
13
votes
3 answers

“Robo 3T” cannot be opened because the developer cannot be verified

I have installed the Robo 3T using the Homebrew tool. brew install --cask robo-3t after installing I am getting pop-up windows asking on macOS. “Robo 3T” cannot be opened because the developer cannot be verified.
Uday Chauhan
  • 1,071
  • 1
  • 9
  • 19
13
votes
1 answer

How to create a Mongodb index in Robo 3T (formerly Robomongo)?

How can I use the Robo 3T GUI to create a simple index for one of the fields in a collection? When I click on my collection, right click on the indexes folder and choose "add Index..." I see the next screen, what should I enter in the fields (mainly…
Shai Rippel
  • 428
  • 1
  • 4
  • 12
13
votes
7 answers

connect robomongo to mongoDB docker container

I'm running a NodeJS App with docker-compose. Everything works fine and I can see all my data by connecting to Mongo inside container. But when I connect to RoboMongo I don't see any data. How can I deal with this problem?
kira
  • 179
  • 1
  • 1
  • 10
1
2 3
27 28