Install MongoDB Enterprise Edition on Debian

Overview

Use this tutorial to install MongoDB 4.2 Enterprise from .deb packages onDebian.

Note

To install a different version of MongoDB, please refer to thatversion’s documentation. To install the previous version, seethe tutorial for version 4.0.

Considerations

Production Notes

Before deploying MongoDB in a production environment, consider theProduction Notes document.

Platform Support

MongodDB 4.2 supports:

  • Debian 10 “Buster” (Starting in version 4.2.1)
  • Debian 9 “Stretch”

MongoDB only provides packages for the 64-bit builds of these releases.See Supported Platforms for more information.

Install MongoDB Enterprise

Important

The mongodb-enterprise package is officially maintained and supported byMongoDB Inc. and kept up-to-date with the most recent MongoDBreleases. This installation procedure uses the mongodb-enterprisepackage.

The mongodb package provided by Debian is notmaintained by MongoDB Inc. and conflicts with themongodb-enterprise package. To check if Debian’s mongodb package isinstalled on the system, run sudo apt list —installed |grep mongodb. You can use sudo apt remove mongodb and sudoapt purge mongodb to remove and purge the mongodbpackage before attempting this procedure.

Use the provided distribution packages as described in this page if possible.These packages will automatically install all of MongoDB’s dependencies, and arethe recommended installation method.

Import the public key used by the package management system.

From a terminal, issue the following command to import theMongoDB public GPG Key from https://www.mongodb.org/static/pgp/server-4.2.asc:

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

The operation should respond with an OK.

However, if you receive an error indicating that gnupg is notinstalled, you can:

  • Install gnupg and its required libraries using the following command:
  1. sudo apt-get install gnupg
  • Once installed, retry importing the key:
  1. wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -

Create a /etc/apt/sources.list.d/mongodb-enterprise.list file for MongoDB.

Create the list file using the command appropriate for your versionof Debian:

  • Debian 10 "Buster"
  • Debian 9 "Stretch"
  1. echo "deb http://repo.mongodb.com/apt/debian buster/mongodb-enterprise/4.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
  1. echo "deb http://repo.mongodb.com/apt/debian stretch/mongodb-enterprise/4.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list

If you’d like to install MongoDB Enterprise packages from aparticular release series, you canspecify the release series of a version of MongoDB that is supportedfor your Debian build in the repository configuration. For example,to restrict your system to the 4.2 release series, add the followingrepository:

  1. echo "deb http://repo.mongodb.com/apt/debian buster/mongodb-enterprise/4.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise-4.2.list
  1. echo "deb http://repo.mongodb.com/apt/debian stretch/mongodb-enterprise/4.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise-4.2.list

Reload local package database.

Issue the following command to reload the local package database:

  1. sudo apt-get update

Install the MongoDB Enterprise packages.

Install MongoDB Enterprise.

Issue the following command:

  1. sudo apt-get install -y mongodb-enterprise

Install a specific release of MongoDB Enterprise.

To install a specific release, you must specify each component packageindividually along with the version number, as in thefollowing example:

  1. sudo apt-get install -y mongodb-enterprise=4.2.1 mongodb-enterprise-server=4.2.1 mongodb-enterprise-shell=4.2.1 mongodb-enterprise-mongos=4.2.1 mongodb-enterprise-tools=4.2.1

If you only install mongodb-enterprise=4.2.1 and do not include thecomponent packages, the latest version of each MongoDB package will beinstalled regardless of what version you specified.

Pin a specific version of MongoDB Enterprise.

Although you can specify any available version of MongoDB,apt-get upgrades the packages when a newer versionbecomes available. To prevent unintended upgrades, pin thepackage. To pin the version of MongoDB at the currentlyinstalled version, issue the following command sequence:

  1. echo "mongodb-enterprise hold" | sudo dpkg --set-selections
  2. echo "mongodb-enterprise-server hold" | sudo dpkg --set-selections
  3. echo "mongodb-enterprise-shell hold" | sudo dpkg --set-selections
  4. echo "mongodb-enterprise-mongos hold" | sudo dpkg --set-selections
  5. echo "mongodb-enterprise-tools hold" | sudo dpkg --set-selections

See also

The recommended procedure to install is through the package manager,as detailed on this page. However, if you choose to install bydirectly downloading the .tgz file, seeInstall MongoDB Enterprise on Debian Using .tgz Tarball.

Run MongoDB Enterprise

Production Notes

Before deploying MongoDB in a production environment, consider theProduction Notes document.

By default, MongoDB instance stores:

  • its data files in /var/lib/mongodb
  • its log files in /var/log/mongodb

If you installed via the package manager, the directories are createdduring the installation.

If you installed manually by downloading the tarballs, you can createthe directories using mkdir -p <directory> or sudo mkdir -p<directory> depending on the user that will run MongoDB. (See yourlinux man pages for information on mkdir and sudo.)

By default, MongoDB runs using the mongodb user account. If youchange the user that runs the MongoDB process, you must also modifythe permission to the /var/lib/mongodb and /var/log/mongodbdirectories to give this user access to these directories.

To specify a different log file directory and data file directory, editthe systemLog.path and storage.dbPath settings inthe /etc/mongod.conf. Ensure that the user running MongoDB hasaccess to these directories.

Most Unix-like operating systems limit the system resources that asession may use. These limits may negatively impact MongoDB operation.See UNIX ulimit Settings for more information.

Start MongoDB.

Issue the following command to start mongod:

  1. sudo service mongod start

Verify that MongoDB has started successfully

Verify that the mongod process has startedsuccessfully:

  1. sudo service mongod status

You can also check the log file for the current status of themongod process, located at:/var/log/mongodb/mongod.log by default. A runningmongod instance will indicate that it is ready forconnections with the following line:

[initandlisten] waiting for connections on port 27017

Stop MongoDB.

As needed, you can stop the mongod process by issuing thefollowing command:

  1. sudo service mongod stop

Restart MongoDB.

Issue the following command to restart mongod:

  1. sudo service mongod restart

Begin using MongoDB.

Start a mongo shell on the same host machine as themongod. You can run the mongo shellwithout any command-line options to connect to amongod that is running on your localhost with defaultport 27017:

  1. mongo

For more information on connecting using the mongoshell, such as to connect to a mongod instance runningon a different host and/or port, see The mongo Shell.

To help you start using MongoDB, MongoDB provides GettingStarted Guides in various driver editions. SeeGetting Started for the available editions.

Uninstall MongoDB

To completely remove MongoDB from a system, you must remove the MongoDBapplications themselves, the configuration files, and any directories containingdata and logs. The following section guides you through the necessary steps.

Warning

This process will completely remove MongoDB, its configuration, and _all_databases. This process is not reversible, so ensure that all of yourconfiguration and data is backed up before proceeding.

Stop MongoDB.

Stop the mongod process by issuing the following command:

  1. sudo service mongod stop

Remove Packages.

Remove any MongoDB packages that you had previously installed.

  1. sudo apt-get purge mongodb-enterprise*

Remove Data Directories.

Remove MongoDB databases and log files.

  1. sudo rm -r /var/log/mongodb
  2. sudo rm -r /var/lib/mongodb

Additional Information

Packages

MongoDB provides officially supported Enterprise packages in their ownrepository. This repository contains the following packages:

Package NameDescription
mongodb-enterpriseA metapackage that will automatically installthe four component packages listed below.
mongodb-enterprise-serverContains the mongod daemon and associatedconfiguration and init scripts.
mongodb-enterprise-mongosContains the mongos daemon.
mongodb-enterprise-shellContains the mongo shell.
mongodb-enterprise-toolsContains the following MongoDB tools: mongoimportbsondump, mongodump, mongoexport,mongofiles,mongorestore, mongostat,and mongotop.