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

Mongo - Error when saving document: 1 Not primary while writing to db

I'm using Robo 3T (robomongo) to connect mongo cluster. I'm having this error while editing/deleting a document. Error when saving document: 1 Not primary while writing to db I googled for this error, many of the solution saying connect to Primary…
lazzy_ms
  • 1,169
  • 2
  • 18
  • 40
6
votes
3 answers

Use Robo 3T to connect to remote MongoDB

I'm trying to use Robomongo (or Robo 3T) under Mac to control my mongodb in the remote Ubuntu & Nginx server. Normally, I need to ssh xxx.xx.xx.xx in a terminal with a username and a password to connect to the server. in…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
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
  • 9,186
  • 4
  • 33
  • 49
6
votes
1 answer

Robomongo can't connect: Missing expected field

I tried to connect to MongoDB in AWS using Robomongo. When I connect, I got this error: Cannot connect to the MongoDB at x.x.x.x:27017 Error: Missing expected field "mechanism" Does anyone know how to solve this error? I already open the 27017…
Aminah Nuraini
  • 18,120
  • 8
  • 90
  • 108
6
votes
1 answer

mongodb database list is empty but i can see the content

I install the mongodb and the Robomongo to control it. but when I use the shell to create table and insert something into it,I can see it in the shell but in the Robomongo I cannt see it,and the database list show the used space is 0.000GB,here is…
unknow error
  • 81
  • 2
  • 5
6
votes
4 answers

Cannot see collections in Robomongo on Windows 10

I searched thoroughly on internet but hardly found anything. I have installed MongoDB (3.2.0) and Robomongo (0.8.5) on Windows 10. After installation I am able to start MongoDB as service successfully. After this I restored the database with the…
PeterB
  • 313
  • 4
  • 19
6
votes
3 answers

collections are not shown in database in Robomongo 0.8.5

In my mongodb one database contains thee collections, but when i run Robomongo 0.8.5 collections of my database are not shown(left side of the Robomongo 0.8.5(file explorer). If i run following query in Robomongo 0.8.5, it shows all the…
Prathap Badavath
  • 1,621
  • 2
  • 20
  • 24
6
votes
2 answers

How export a specific query in mongo to csv?

I'm am searching for either on how to export a query result from mongo to CVS or excel, or how to export results in robomongo. I found mongoexport but I think that only can export a collection with some simple constraints. This is my query: …
jhonny lopez
  • 325
  • 1
  • 2
  • 9
6
votes
1 answer

E11000 duplicate key error index: While Creating Unique index

i am running the query below in robomongo. bot it is giving an error as shown below? I am really trying to remove the duplcate enties in url field using this query. Is there any problem with my…
Juhan
  • 1,283
  • 2
  • 11
  • 30
6
votes
2 answers

MongoDB remote connection via RoboMongo

I'm trying to connect to my Mongodb server via Robomongo. I have changed the Bind_ip to 0.0.0.0 at the server mongod.conf I have also set the auth=true field. Now when I'm trying to log in from RoboMongo I'm getting auth fail error. To be honest i…
tubu13
  • 924
  • 2
  • 17
  • 34
6
votes
2 answers

Robomongo connection with Meteor mongodb

I have connected my localhost mongodb from robomongo but having problem in connecting Meteor mongodb. I am running Meteor from nitrousio not on localhost. In robomongo connection settings, it is showing "Connected to 'meteor_url:3001'. Authorization…
Vardan
  • 454
  • 1
  • 5
  • 18
5
votes
1 answer

How can I check my query history when using Robo 3T for MongoDB?

When I use Robo 3T for MongoDB, can I have my query history scripts stored in Robo 3T, just like pl/sql developer for oracle? this is a very key function cause often times I need to check my previously query inputs.
Benson
  • 189
  • 2
  • 9
5
votes
2 answers

in Robo3T, how to add a custom function

I just installed Robo3T( previously named robomongo), which has a GUI for mongo db. I want to add a custom function to help me get the last N documents in normal order, the query statement is like…
StayFoolish
  • 531
  • 1
  • 12
  • 29
5
votes
1 answer

How to retrieve null lookup entries on mongodb?

I have this query that provides me the join I want to: db.summoners.aggregate([ { "$match": { "nick":"Luispfj" } }, { "$unwind": "$matches" }, { "$lookup": { "from":"matches", …
Luis Paulo
  • 129
  • 2
  • 10
5
votes
5 answers

How to create a database with robomongo?

I want to create a new database by using robomongo. Click "create database" then I write database name. when I click to create nothing happens. What am I doing wrong?
Ceren
  • 51
  • 1
  • 1
  • 2
1 2
3
27 28