In this tutorial, you will learn –

Database security overview Backup Procedures – mongodump Mongodb Monitoring Indexing and Performance Considerations Configure MongoDB with Kerberos Authentication MongoDB Authentication using x.509 Certificates How to Configure MongoDB with Kerberos Authentication

MongoDB Security Overview

MongoDB has the ability to define security mechanisms to databases. By default one wouldn’t want everyone to have an open access to every database in MongoDB, hence the requirement for having some sort of security mechanism in MongoDB is important. Following are the best practices when implementing security in databases

Enable access control – Create users so that all applications and users are enforced to have some sort of authentication mechanism when accessing databases on MongoDB. Configure role based access control – Sometimes there can be a logical grouping of permissions which may be required, which can be clubbed in roles. Users can then be assigned to these roles. Try to configure MongoDB to use some sort of encryption protocol such as TLS or SSL. These protocols can be used to encrypt the traffic which flows between the client and the mongo DB environment. Configure auditing – Administrators normally need to know who is doing what, which helps in analyzing problems later on. The best way is to enable auditing in MongoDB. Run MongDB server instance with a separate user id which has access to the required resources on the server environment.

Mongodb Backup Procedures – mongodump

When working with MongDB it is important to always ensure a backup procedure is in place in case the data within MongoDB gets corrupted for any reason. Below are the backup mechanisms available from within MongoDB

Backup by Copying Underlying Data Files – This is probably the easiest mechanism , all that needs to be done is to copy the data files on which MongoDB resides and copy it to another location which ideally should be another server. Backup a Database with mongodump – The mongodump tool reads data from a MongoDB database and creates high fidelity BSON files. What needs to be taken into consideration is that if the data set is large in volume, then mongodump can be very resource intensive, so then to mitigate this problem, the utility should be run on a secondary server. MongoDB Cloud Manager Backup – MongoDB Cloud Manager continually backs up MongoDB replica sets and sharded clusters by reading the oplog data from the MongoDB environment. MongoDB Cloud Manager can create a point in time recovery by storing oplog data so that it can create a restore at any moment in time for a particular replica set or sharded cluster.

Mongodb Monitoring

Monitoring is one of the most critical administrative activities in MongoDB. This is because you can be more proactive by monitoring the environment for possible issues which could crop up. Below are some of the examples for implementing monitoring

mongostat will tell you how many time database operations such as insert, query, update, delete, etc. actually occur on the server. This will give a good idea on how much the load the server is handling and will indicate whether you need additional resources on the server or maybe additional servers to distribute the load. mongotop tracks and reports the current read and write activity of a MongoDB instance, and reports these statistics on a per collection basis. MongoDB provides a web interface that exposes diagnostic and monitoring information in a simple web page. One can browse to the below url on your local server to open the web administration utility http://localhost:28017 The serverStatus command, or db.serverStatus() from the shell, returns an overview of the status of the database, with details on the disk usage, memory use, connections established to the MongoDB environment, etc.

MongoDB Indexing and Performance Considerations

Indexes are very important in any database and can be used to improve the efficiency of search queries in MongoDB. If you are continually performing searches in your document, then it’s better to add indexes on the fields of the document that are used in the search criteria. Try to always limit the number of query results returned. Suppose you have 2 field names in a document, but you just want to see 2 fields from the document. Then make sure your query only targets to display the 2 fields you require and not all of the fields. If you want to view certain field values, then only use those fields in the query. Do not query for all the fields in the collection if they are not required.

Configure MongoDB with Kerberos Authentication

While authorization looks at ensuring the client access to the system, the authentication checks what type of access the client has in MongoDB, once they have been authorized into the system. There are various authentication mechanisms, below are just a few of them.

MongoDB Authentication using x.509 Certificates

Use x.509 Certificates to authenticate the client – A certificate is basically a trusted signature between the client and the MongoDB Server. So instead of entering a user name and password to connect to the server, a certificate is passed between the client and the MongoDB Server. The client will basically have a client certificate which will be passed to the server to authenticate into the server. Each client certificate corresponds to single MongoDB user. So each user from MongoDB has to have their own certificate in order to authenticated to the MongoDB server. To ensure this works, the following steps must be followed;

A valid certificate must be bought from a valid third party authority and install it on the MongoDB Server. The Client certificate must have the following properties (A single Certificate Authority (CA) must issue the certificates for both the client and the server . The Client certificates must contain the following fields – keyUsage and extendedKeyUsage. Each user who connects to the MongDB Server needs to have a separate certificate.

How to Configure MongoDB with Kerberos Authentication

Below are the steps to configure MongoDB with Kerberos Authentication on Windows: Step 1) Configure MongoDB with Kerberos Authentication on Windows Kerberos is an authentication mechanism used in large client-server environments. It is a very secure mechanism wherein the password is only allowed if it is encrypted. Well, MongoDB has the facility to authenticate against an existing Kerberos based system. Step 2) mongod.exe server process Next, Start the mongod.exe server process. Step 3) mongo.exe client process and connect Next, Start the mongo.exe client process and connect to the MongoDB server. Step 4) Add a user in MongoDB Which is basically a Kerberos principal name to the $external database. The $external database is a special database which tells MongoDB to authenticate this user against a Kerberos system instead of its own internal system.

use $external db.createUser( { user: “user1@example.NET”,

roles:[
{
	role: "read" , db:"Marketing"}
	
}
	  ]

}

Step 5) Start using command Start mongod.exe with Kerberos support by using the following command

mongod.exe –auth –setParameter authenticationMechanisms=GSSAPI

And then you can now connect with the Kerberos user and Kerberos authentication to the database.

Summary:

It is very important to implement security in databases to ensure that the data in the database is kept safe. Users can be created in the database with the createUser command. Specific roles can be assigned to the users to give them specific permissions on the database itself. Administrators can be added for all databases are for just specific databases. This is achieved by giving either the userAdmin or the userAdminAnyDatabase role. Always backup your MongoDB environment so that in that in the case of any disaster, the data would be easily recoverable. Always monitor your MongoDB environment for being more proactive and see issues before they occur. There are various authentication mechanisms to provide better security in databases. One example is the usage of certificates to authenticate users instead of using usernames and passwords.