Wednesday, October 25, 2017

How to install MongoDB Compass on Lubuntu 16.04

How to install MongoDB Compass on Lubuntu 16.04

MongoDB Compass is an official graphical user interface software for MongoDB, developed and maintain by MongoDB itself. In this article i'm going to show you how to install MongoDB Compass on Lubuntu 16.04.

Step by step how to install MongoDB Compass on Lubuntu 16.04

  • go to MongoDB Compass download page and download the debian package from there, or use this alternative download link.
  • once you got the debian package of MongoDB Compass, open up your terminal/command line on lubuntu (press CTRL + ALT + T).
  • let's say the debian package is located at ~/Downloads/
  • cd ~/Downloads/
  • install the package
  • sudo dpkg -i mongodb-compass_1.9.0_amd64.deb
  • done!
Once MongoDB Compass is installed, you can open it from lubuntu start menu > Accessories > MongoDB Compass.

MongoDB Compass on Lubuntu 16.04

MongoDB Compass on Lubuntu 16.04

MongoDB Compass key features:

  • Performance Charts.
Real-time server statistics let you view key server metrics and database operations. Drill down into database operations easily and understand your most active collections.
  • Sidebar. Redesigned.
See with one glance what server you are connected to. Navigate between instance, database and collection level, with powerful filtering of your namespaces.
  • Visualize your Schema.
MongoDB Compass analyzes your documents and displays rich structures within your collections through an intuitive GUI. It allows you to quickly visualize and explore your schema to understand the frequency, types and ranges of fields in your data set.
  • Build Geo Queries.
Visualize, understand, and work with your geospatial data. Point and click to construct sophisticated queries, execute them with the push of a button and Compass will display your results both graphically and as sets of JSON documents.
  • Interactive Document Editor.
Modify existing documents with greater confidence using the intuitive visual editor, or insert new documents and clone or delete existing ones in just a few clicks.
  • Visual Explain Plans.
Know how queries are running through an easy-to-understand GUI that helps you identify and resolve performance issues.
  • Index Management.
Understand the type and size of your indexes, their utilization and special properties. Add and remove indexes at the click of a button.
  • Document Validation.
Create and modify rules that validate your data using a simple point and click interface. CRUD support lets you fix data quality issues easily in individual documents.

No comments:

Post a Comment