Questions tagged [mongodb-compass]

MongoDB Compass is MongoDB’s own GUI tool for database management, visualization, and CRUD operations. It supports the latest MongoDB versions and is available on Linux, Mac, or Windows. mongodb-compass tag should be used when posting questions related to this tool.

The GUI for MongoDB. Visually explore your data. Run ad hoc queries in seconds. Interact with your data with full CRUD functionality. View and optimize your query performance. Available on Linux, Mac, or Windows. Compass empowers you to make smarter decisions about indexing, document validation, and more.


Development:

All versions of MongoDB Compass are source available and free to use. You can find the source repositories for MongoDB Compass at https://github.com/mongodb-js/compass/.

Running Compass locally requires Node.js and npm:

  • Node.js: ^12.4.0
  • npm: >=6.13.0
npm install
npm start [compass|compass-readonly|compass-isolated]

For issues, create a ticket in JIRA Project.

Is there anything else you’d like to see in Compass? Submit suggestions in our feedback forum.

478 questions
0
votes
0 answers

Connect to mongodb server with mongoDB Compass

I'm trying to connect to MongoDB on my Ubuntu server by using MongoDB compass. Somehow I keep getting the underneath error. the error i get in MongoDB Compass My mongodb is running and listining on Port 27017 Connection to MongoDB What could be the…
MapMyMind
  • 113
  • 10
0
votes
1 answer

Access mongodb data remotely and render the results on web page?

I want to host mongodb database remotely and access the database via querying it and display the results on web page.I came to know that mongodb atlas can be used for hosting it and in order to query the database crest is an API which can be…
0
votes
1 answer

View MongoDB array in order of indices with Compass

I am working on a database of Polish verbs and I'd like to find out how to display my results such that each verb conjugation appears in the following order: 1ps (1st person singular), 2ps, 3ps, 1ppl (1st person plural, etc.), 2ppl, 3ppl. It…
0
votes
1 answer

MongoDB Compass shows bad minimum value of data distribution of a key

I'm on MongoDB Compass Version 1.5.1 for mac. When I look at distribution of values, Compass returns plots like the following: As you can see, min and max value are available. But min values are wrong. I know the minimum values of those two keys…
floatingpurr
  • 7,749
  • 9
  • 46
  • 106
-1
votes
1 answer

I can not connect to mongodb container with mongodb compass

Here is my docker-compose file version: "3.8" services: mongodb: image: mongo restart: always container_name: mongodb_container_gold_jar ports: - 27017:27017 environment: MONGO_INITDB_DATABASE: root …
Hao.Le
  • 183
  • 10
-1
votes
2 answers

Solution to Mongodb compass interior hyphen error?

I'm attempting to import a large CSV file into mongodb using mongodb compass. The data originally came from BigQuery via GDELT, then was dumped into 40+csv files. Over half of the files are not able to be imported as they get partially through and…
cogijl
  • 59
  • 6
-1
votes
1 answer

Mongodb Compass running but GUI is not visible

I have installed Mongodb Compass on windows 2016 server. When I Run it, GUI is not visible? However, Task manager shows that it is running. I have rebooted the machine, then also the problem is there Please help to solve the problem.
Ashish
  • 479
  • 3
  • 7
  • 18
-1
votes
1 answer

Search by specific characters

I am trying to make a search in the base of the corresponding symbols for the fields I need, the maximum that I could do find({ carstvo: "Большое" }) as you can see I only get the exact value from the field. I need to enter certain characters…
Стас Рябцев
  • 1,318
  • 4
  • 19
  • 36
-1
votes
1 answer

Not Authorized to create a database

Whenever I try to create a db in mongo I get this error: not authorized on guilds to execute command { listCollections: 1, filter: { name: "guilds" }, cursor: {}, nameOnly: true, lsid: { id: UUID("06da035b-e20b-4cff-b533-e141349b63f3") }, $db:…
Leastrio
  • 210
  • 1
  • 2
  • 9
-1
votes
2 answers

MongoDB Compass Select Distinct Field

I'm trying to create an aggregation pipeline in MongoDB Compass for the field city in one of my collections. This is what I have so far: [{$unwind: { path: '$city', preserveNullAndEmptyArrays: true }}, {$group: { _id: null, distinctCities: {…
-2
votes
1 answer

Which index type should i choose in MongoDb

PAYMENT_ID is a non-null column. I will get an average of 10 documents per quey by PAYMENT_ID. When i create index for that column in mongo db, mongodb compass asks me to choose index type. Here are the selections. Which option would be the best for…
yılmaz
  • 365
  • 1
  • 14
-2
votes
2 answers

I followed the mongoDB docs and now cannot access my DB I get this error: connect ECONNREFUSED 127.0.0.1:27017

Below I list the directions I followed from the docs Problem After following the docs listed below I am unable to access my database. I most definitely did not forget my password as I actually saved the query that I ran to create the user I will…
Wayne
  • 660
  • 6
  • 16
-2
votes
1 answer

mongodb compass follow object reference

My company gave me a MongoDB database to study. I open it in Compass and discover that it is generously supplied with parent and child ID links. I try right clicking on one of those objectIDs to dereference it – expecting a menu item to go and see…
Joymaker
  • 813
  • 1
  • 9
  • 23
1 2 3
31
32