Author: cobra_admin
Create a CRUD Application with Golang and MongoDB on Ubuntu 20.04
Introduction MongoDB is one of the best document-based open-source database management systems. You can use the application across a wide range of business systems due to its flexible design patterns, which are not met by traditional SQL databases. With its robust database schema, the MongoDB platform is suitable for setting…
Read MoreHow to Create a MongoDB Replica Set
Introduction When you deploy a MongoDB database in a mission-critical application, you can configure a replica set for high availability. A replica set offers redundancy and high availability, which reduces downtime during a disaster because there is no single point of failure. The minimum recommended configuration for a MongoDB replica set is…
Read MoreHow to Install MongoDB on Vultr Kubernetes Engine (VKE)
Introduction MongoDB is an open-source database program. Classified as a NoSQL database program, the data stored in MongoDB is in JSON-like format. Instead of tables and rows, it stores data in collections of documents. Each collection contains related documents, and each document is a JSON-like object. The data model of…
Read MoreHow to Use MongoDB in Python with MongoEngine
Introduction MongoDB is a free and open-source NoSQL database program. It stores data in collections of documents where a document is like a row in the traditional relational database systems. It does not have a fixed schema for storing data in a collection; you store data in key-value pairs like…
Read MoreUse MongoDB with Node.JS
Introduction Node.js is a runtime environment and server-side scripting language used to build highly scalable and responsive applications like blogs, e-commerce websites, and corporate portals. MongoDB, like other NoSQL databases, is non-tabular. This means it stores data differently than relational databases and has data types like document, key-value, wide-column, and…
Read MoreInstall MongoDB on CentOS
MongoDB is a leading NoSQL database commonly used in modern web applications. This tutorial will walk you through setting up MongoDB on Red Hat Enterprise Linux (RHEL) and CentOS Linux: Update your system before beginning installation. Install MongoDB Community Edition Install MongoDB with the yum package manager. If you need to…
Read More