How to Install MongoDB on Ubuntu 20: A Step-by-Step Tutorial

MongoDB is a popular and powerful NoSQL database that is widely used for building scalable, high-performance applications. If you’re running Ubuntu 20 and want to set up MongoDB, this step-by-step tutorial will guide you through the installation process.

Posted on

MongoDB is a popular and powerful NoSQL database that is widely used for building scalable, high-performance applications. If you’re running Ubuntu 20 and want to set up MongoDB, this step-by-step tutorial will guide you through the installation process.

Prerequisites

Before we dive into the installation process, ensure that you have the following:

  • A system running Ubuntu 20.
  • A user account with sudo privileges.
  • An internet connection to download the MongoDB package.

Step 1: Update System Packages

The first step is to ensure your system’s package list is up to date. Open a terminal and run the following command:

sudo apt update

This command will refresh the list of available packages and their versions.

Step 2: Install MongoDB

To install MongoDB on Ubuntu 20, you can use the official MongoDB repository. Follow these steps:

2.1 Add MongoDB Repository

Add the MongoDB repository to your system using the wget command:

wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -

2.2 Create MongoDB Repository File

Create a MongoDB repository file for Ubuntu 20:

echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list

2.3 Install MongoDB

Now, you can install MongoDB by running the following commands:

sudo apt update
sudo apt install -y mongodb-org

This will install the MongoDB server and related packages.

Step 3: Start and Enable MongoDB

After the installation is complete, you need to start the MongoDB service and enable it to start on boot:

3.1 Start MongoDB

Start the MongoDB service using the following command:

sudo systemctl start mongod

3.2 Enable MongoDB on Boot

To ensure MongoDB starts automatically when the system boots, run this command:

sudo systemctl enable mongod

Step 4: Verify MongoDB Installation

To verify that MongoDB has been successfully installed and is running, you can check its status:

sudo systemctl status mongod

If MongoDB is running correctly, you’ll see the status as “active (running).”

Step 5: Access the MongoDB Shell

You can access the MongoDB shell to interact with the database. Simply open a terminal and run:

mongo

This will open the MongoDB shell, and you can start working with your MongoDB instance.

Conclusion

You have successfully installed MongoDB on your Ubuntu 20 system. MongoDB is a versatile and scalable NoSQL database that can power your applications. You can now start creating databases, collections, and documents and use MongoDB for your projects. If you encounter any issues or want to learn more about MongoDB, refer to the official MongoDB documentation for detailed information. Enjoy using MongoDB on your Ubuntu 20 system!