A brief overview and installation of MongoDB

MongoDB is an open source application document-oriented database which is available under the GPL for free. It was initially built to be scalable, open source, high performance, and document-oriented database. The Document Oriented Database falls under the category of a “no SQL databases”. Usually, databases, in general, would be classified under RDBMS, OLAP or NOSQL. MongoDB is a NoSQL database.

Installation of MongoDB is very simple either through compilation or through the official repository. Follow the instructions below to install MongoDB. Let’s see how to install MongoDB on a centos7 machine.

1. Create the MongoDB repo at /etc/yum.repos.d as indicated on the official MongoDB website.

vim /etc/yum.repos.d/MongoDB.repo and add the following lines:

[mongodb-org-3.2]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.2/x86_64/
gpgcheck=0
enabled=1

2. Then, you would simply need to do the installation.

yum -y install mongodb-org

3. After the installation, you can start the daemon as follows:

systemctl mongod start

4. You would notice that the daemon, by default would run under the port 27017

[root@tunnelix yum.repos.d]# netstat -ntpl | grep -i mongo
tcp        0      0 127.0.0.1:27017         0.0.0.0:*               LISTEN      9692/mongod 

5. By typing mongo on the terminal you would be prompted to the MongoDB CLI

How NoSQL came to the scene? It was found that Relational Databases were not capable of handling big data. Through, there is a serious debate on this issue, NoSQL was the answer to handle big data.  Horizontal scalability was found missing in RDBMS compared to NOSQL. In RDBMS, an entity is represented by a table compared to MongoDB, the table is comparable to collections.

Some features of MongoDB is that it supports:

Ad hoc – you can do a search by field, range queries and regular expressions

Indexing – Any field in a particular document can be indexed

Replication – Master and slave replication is supported. A master can performs reads and writes and a slave will copies data from the master where it can only be used for reads or backup.

Data Duplication – MongoDB can run on multiple servers where data is duplicated to keep the system up and running in case of hardware failure.

Load Balancing – Since horizontal scalability is one of MongoDB feature, load balancing can be set up between machines. New machines can be added to a running database.

Nitin J Mutkawoa https://tunnelix.com

Blogger at tunnelix.com | Founding member of cyberstorm.mu | An Aficionado Journey in Opensource & Linux – And now It's a NASDAQ touch!

You May Also Like

More From Author