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

User authentication for connecting to robomongo

I have a mongoDB server using v2.4.9. I need to connect to that server using robomongo in my localhost. I have enabled auth=true in /etc/mongobd.conf and I have added the username and password in mongodb.php. When I login using robomongo to the…
0
votes
1 answer

connect remotely to mongoDB server

I have installed MongoDB on a fresh Centos7 server. I have installed MongoDB accroding to this tutrial: https://www.liquidweb.com/kb/how-to-install-mongodb-on-centos-7/ The installation was completed succsessfully, when I write mongo on the shell…
Itzik.B
  • 1,023
  • 2
  • 15
  • 35
0
votes
1 answer

Insert value in mongo DB with datatype specify Robomongo UI

db.employee_details.insert( on_boarding_id : NumberLong(1), user_name : String('chandan kumar'), gender : Timestamp(), blood_group : String('o+'), marital_status : String('single'), pan_no : String('CDSNJHJ8789'), emergency_contact :…
Chandan Kumar
  • 799
  • 7
  • 23
0
votes
0 answers

Javascript queries takes too long to execute in MongoDB

I have two collection "Sample" and "Test" which is 300mb and 4GB respectively. When I tried to query the two collection in a single query I used Javascript. But it takes very long time to execute. How to increase the speed of the query? Below is the…
Gan90
  • 23
  • 4
0
votes
2 answers

Add user id in my profile collection using aggregation

Below is my user collection data user collection { "_id" : ObjectId("584bc9ba420a6b189c510af6"), "old_user_id" :1, "name" :"aaa" }, { "_id" : ObjectId("9ba420a584bc6b189c59ba42"), "old_user_id" : 2, "name" :"bbb" }, { …
its me
  • 524
  • 6
  • 28
  • 62
0
votes
4 answers

How can i calculate price positive and negative price using mongodb or robomongo?

below is my userpricing collection data { "_id" : ObjectId("584bc9ba420a6b189c510af6"), "user_id" : 1, "mobilenumber":"01234", "price" : 2000.0, "type" : "credit", }, { "_id" : ObjectId("584bc9ba420a6b189c510af6"), …
its me
  • 524
  • 6
  • 28
  • 62
0
votes
1 answer

mongoose when change nodejs version get error Cannot read property 'replace' of undefined

Trying to test mongoose: https://github.com/Automattic/mongoose When I changed version of node the npm.cmd "run-script" "test" does not work and gives me the message: C:\2016\IT\nb\M11\22\mongoose\test\connection.test.js:145 var repl2 =…
MToma
  • 549
  • 1
  • 5
  • 9
0
votes
1 answer

Authorizazion Skipped by you

I need to configure robomongo in Centos so this I obtain this error: in the next tab "Authetication" is not set. I set in /etc/mongod.conf '#net.bindIp: 127.0.0.1' I add in /etc/sysconfig/iptables -A INPUT -p tcp -m multiport --ports 27017 -m…
poopp
  • 1,297
  • 2
  • 13
  • 23
0
votes
1 answer

MongoDB Aggregate on huge documents

I'm trying to self learn mongoDb with big mongoDB (Each document is approx 10Mb total of 1000 documents) I wanted to try some basics. For example listing every Activity that is done over all the users sorting it by UsedCallories.…
vwseppe
  • 36
  • 1
  • 7
0
votes
0 answers

Multi Application, Multi database support

We were thinking to use Mongo in a multi-application multi-database system. But we are not able to figure it out. Let me lay it out here. AWS server | |_ Mongo | |_App1 |_ |_DB1 |_DB2 |_DB3 ... | |_App2 |_ |_DB1 …
Abhijith Nagaraja
  • 3,370
  • 6
  • 27
  • 55
0
votes
1 answer

Is there any mongodb client that accepts SSL

I am using Robomongo but I am unable to connect to my mongodb since it is ssl enabled. So, I am currently connecting through cmd, but it has its limitations like page buffer and I am missing the UI experience.
0
votes
0 answers

When copying individual items from one collection to another in MongoDB via a script, the resulting collection has fewer entries than the original

My test collection has 56 entities in them. When the following script is executed the resulting collection has less entries than the original collection. The number varies for each run. What would cause this issue and is there a workaround for…
Lian
  • 131
  • 1
  • 7
0
votes
2 answers

Find connection string for Robomongo connection settings to an Azure MongoDB

In my app i'm using node with mongoose to connect to MongoDB. The MongoDB instance is in Azure. I'm needing the above so I can connect directly to the database. After looking at this to do it: How to connect Robomongo to MongoDB I'm using…
sledgeweight
  • 7,685
  • 5
  • 31
  • 45
0
votes
0 answers

Remove duplicate in MongoDB using two properties

it might look like a duplicate question but actually it is not. I have a mongoDB database with some French towns in it (omelette du fromage), but the file from which I got those seems to have duplicate. At first I use this method to remove towns…
Mowso
  • 113
  • 2
  • 14
0
votes
1 answer

Authenticate MongoDB along with Robomongo

I'm currently using Robomongo when accessing my mongodb database. I have created a admin account on mongodb who has admin access to any db. I would like to be able to ONLY login with the credentials of the admin account. Now I can just login…
Maxim
  • 631
  • 5
  • 10