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

In MongoDB, how do I update a field with the value of an element inside an array?

I have data in one MongoDb table that I need copied to another MongoDb table. The first table has a field with different elements (see examples below) which I know how to work with. The second table, however, has a field with an array that is…
boilers222
  • 1,901
  • 7
  • 33
  • 71
3
votes
1 answer

how to copy a collection from one from another in robomongo

I have a collection named dashboard in one db and i want to copy that collection to another db using robomongo. How can i do this? I tried creating a new collection in 2nd db and tried copying but it failed. so somebody please help me
Aysha Azura
  • 179
  • 1
  • 2
  • 15
3
votes
2 answers

How to load external javascript file into Robomongo UI?

I want to load lodash while db scripting in RoboMongo's shell. I've tried doing load('lodash.min.js') in my db script, but the shell doesn't see the library. The db script and the library are in the same directory.
Maki
  • 890
  • 1
  • 7
  • 13
3
votes
5 answers

Unable to run robomongo.sh using sh robomongo.sh in Ubuntu 14.04

I have Just downloaded the robomongo 64 bit for ubuntu from the Official site. Then I opened my terminal and went through the folder structure and executed the command from bin folder. sh robomongo.sh I'm getting an error like this robomongo.sh: 5:…
Pavan
  • 135
  • 3
  • 12
3
votes
1 answer

Are there any up to date Mongo GUI's left?

This type of question has been asked before but needs a serious update. I'm looking for an up-to-date mongodb gui that supports v3.0.x. Ideally it would also support connection to a MongoDB v3.0.x on a mongos instance over SSL. AFAIK, none…
wlingke
  • 4,699
  • 4
  • 36
  • 52
3
votes
1 answer

RoboMongo 0.8.5 Error inserting Date

Tried many formats like: manufactureDate : new Date("2009-8-2"), or manufactureDate : new Date(2009,8,2), or even manufactureDate : new Date("Feb 8, 2009"), Each validation try ends with: Unable to parse JSON Any Ideas?
MEZesUBI
  • 297
  • 7
  • 17
3
votes
1 answer

robomongo aws ec2 ubuntu

Trying to make a remote connection from Robomongo to my ec2 ubuntu mongodb. I have been able to make connections to other non-ec2 ubuntu servers with Robomongo. But when I try with ec2 I keep getting the "you skipped authorization" error. I can…
dasqueel
  • 1,709
  • 2
  • 15
  • 16
3
votes
1 answer

Admin user to not able to login to other database on mongodb

mongo user can able to login on admin database.But can't able to login other databases. I have given following privileges to the user. Privileges command : db.createUser( { user: "root", pwd: "password", roles: [ "readWriteAnyDatabase",…
Nataraj
  • 852
  • 2
  • 14
  • 29
3
votes
5 answers

Access MongoDB from other server

I have a MongoDB database on my Linux server. I want to access it from another server. I tried to make a connection from my local computer with the Robomongo. The connection is succesfull, but the authentication fails. How can I get the…
Marten
  • 1,376
  • 5
  • 28
  • 49
3
votes
2 answers

Connect to Meteor using Robomongo

I have Meteor running on a local virtual machine on Windows which is accessible using the IP address of 192.168.56.111 When I use Robomongo, I use this IP address and point it to port 3001 and I an unable to connect. Should I expect it to connect?…
JoeTidee
  • 24,754
  • 25
  • 104
  • 149
2
votes
8 answers

Studio 3T for MongoDB unable to insert multiple object at once in json document in a collection

In Studio 3T i have created the collection in which i am adding a document after which popup window appears Titled >>Insert JSON Document<< to add the data in the document then i wrote these items. { "_id" : "5c18e1892998bdb3b3d355bf", …
D-dingdong
  • 21
  • 1
  • 7
2
votes
0 answers

How to replace a string in all records using Robo 3T?

I'm using MongoDB and Robo 3T. In some documents I have a field parent with the value "0" (string). I want to replace it with "NA". In order to get all records I did: db.getCollection('mycollection').find({}).forEach(function(doc) { var json…
vesii
  • 2,760
  • 4
  • 25
  • 71
2
votes
1 answer

mongorestore -d mydatabase -c mycollections C:\Users\backup.bson.gz doesn't work

this is my first question here because i really don't know what to do. So i got a Database named mydatabase. I also got a Collection named mycollection. And i got a Backup-File named backup.bson.gz. I want to use a command in MongoDB / Robo 3T that…
Shelly
  • 23
  • 3
2
votes
0 answers

MongoDB - Robo3t: Failed to do query, no good nodes, Field 'cursor' must be a nested object

When viewing documents of a collection and trying to move between pages using "left" and "right" arrow buttons: suddenly started to get the following error: Failed to load documents. Error: Failed to do query, no good nodes in MyCluster-shard-0,…
Mr. L
  • 101
  • 12
2
votes
2 answers

Trouble connecting to MongoDB Atlas from Robo 3T

I have created a free Atlas account and setup a cluster. I am trying to connect to the atlas cluster from the Robo 3T GUI. I have made the following configuration, In the connection tab, I have specified all the cluster nodes with the type set to…
Naanavanalla
  • 1,412
  • 2
  • 27
  • 52