- Install MongoDB >
- Install MongoDB Community Edition >
- Install MongoDB Community Edition on Linux >
- Install MongoDB Community Edition on Red Hat Enterprise or CentOS Linux
Install MongoDB Community Edition on Red Hat Enterprise or CentOS Linux¶
On this page
Overview¶
Use this tutorial to install MongoDB 4.2 Community Edition on Red Hat
Enterprise Linux, CentOS Linux, or Oracle Linux [1]
versions 6 and 7 using .rpm packages.
This installation guide only supports 64-bit systems. See Supported Platforms for more information.
Windows Subsystem for Linux (WSL) - Unsupported
MongoDB does not support WSL, and users on WSL have encountered various issues installing on WSL. For examples, see:
Production Notes
Before deploying MongoDB in a production environment, consider the Production Notes document.
| [1] | MongoDB only supports Oracle Linux running the Red Hat Compatible Kernel (RHCK). MongoDB does not support the Unbreakable Enterprise Kernel (UEK). |
Packages¶
MongoDB provides officially supported packages in their own repository:
| Package Name | Description |
|---|---|
mongodb-org |
A metapackage that will automatically install
the four component packages listed below. |
mongodb-org-server |
Contains the mongod daemon, associated init
script, and a configuration file (/etc/mongod.conf). You
can use the initialization script to start mongod
with the configuration file. For details, see Run MongoDB
Community Edition. |
mongodb-org-mongos |
Contains the mongos daemon. |
mongodb-org-shell |
Contains the mongo shell. |
mongodb-org-tools |
Contains the following MongoDB tools: mongoimport
bsondump, mongodump, mongoexport,
mongofiles,
mongorestore, mongostat,
and mongotop. |
Install MongoDB Community Edition¶
Note
To install a different version of MongoDB, please refer to that version’s documentation. To install the previous version, see the tutorial for version 4.0.
This installation guide only supports 64-bit systems. See Supported Platforms for more information.
Note
You can also spin up MongoDB on AWS, Azure, or GCP using Atlas, our fully-managed database-as-a-service. Atlas enables you to configure anything from a free sandbox environment to a globally sharded production cluster. Set up a free cluster now.
Using .rpm Packages (Recommended)¶
Configure the package management system (yum).¶
Create a /etc/yum.repos.d/mongodb-org-4.2.repo file so that
you can install MongoDB directly using yum:
Note
You can find .repo files for each release in the repository itself.
Odd-numbered minor release versions (e.g. 3.5) are development
versions and are unsuitable for production use.
Install the MongoDB packages.¶
To install the latest stable version of MongoDB, issue the following command:
Alternatively, to install a specific release of MongoDB, specify each component package individually and append the version number to the package name, as in the following example:
You can specify any available version of MongoDB. However yum
upgrades the packages when a newer version becomes available. To
prevent unintended upgrades, pin the package. To pin a package, add
the following exclude directive to your /etc/yum.conf file:
Using Tarballs¶
Prerequisites¶
MongoDB .tar.gz tarballs require installing the following
dependencies:
Procedure¶
Download the MongoDB .tar.gz tarball.¶
Download the tarball for your system from the MongoDB Download Center.
Extract the files from the downloaded archive.¶
For example, from a system shell, you can extract using the tar command:
Ensure the binaries are in a directory listed in your PATH environment variable.¶
The MongoDB binaries are in the bin/ directory of the tarball.
You must either:
- Copy these binaries into a directory listed in your
PATHvariable such as/usr/local/bin, - Create symbolic links to each of these binaries from
a directory listed in your
PATHvariable, or - Modify your user’s
PATHenvironment variable to include this directory.
For example, you can add the following line to your shell’s
initialization script (e.g. ~/.bashrc):
Replace <mongodb-install-directory> with the path to the extracted
MongoDB archive.
Run MongoDB Community Edition¶
Prerequisites¶
ulimit¶
Directory Paths¶
To Use Default Directories¶
By default, MongoDB runs using the mongod user account and
uses the following default directories:
/var/lib/mongo(the data directory)/var/log/mongodb(the log directory)
- ➤ If you installed via the package manager,
- The default directories are created, and the owner and group for
these directories are set to
mongod. - ➤ If you installed by downloading the tarballs,
The default MongoDB directories are not created. To create the MongoDB data and log directories:
Tip
Depending on your user permission, you may need to use
sudoto perform these operations.By default, MongoDB runs using the
mongoduser account. Once created, set the owner and group of these directories tomongod:
To Use Non-Default Directories¶
To use a data directory and/or log directory other than the default directories:
Tip
Depending on your user permission, you may need to use sudo
to perform these operations.
Create the new directory or directories.
Edit the the configuration file
/etc/mongod.confand modify the following fields accordingly:storage.dbPathto specify a new data directory path (e.g./some/data/directory)systemLog.pathto specify a new log file path (e.g./some/log/directory/mongod.log)
Ensure that the user running MongoDB has access to the directory or directories:
If you change the user that runs the MongoDB process, you must give the new user access to these directories.
Configure SELinux if enforced. See Configure SELinux.
Configure SELinux¶
Important
If SELinux is in enforcing mode, you must configure SELinux for
MongoDB if:
- You are not using the default MongoDB directories (for RHEL 7.0), and/or
- You are not using default MongoDB ports.
Non-Default MongoDB Directory Path(s)¶
Update the SELinux policy to allow the
mongodservice to use the new directory:where specify one of the following types as appropriate:
mongod_var_lib_tfor data directorymongod_log_tfor log file directorymongod_var_run_tfor pid file directory
Note
Be sure to include the
.*at the end of the directory.Update the SELinux user policy for the new directory:
where specify one of the following types as appropriate:
mongod_var_lib_tfor data directorymongod_log_tfor log directorymongod_var_run_tfor pid file directory
Apply the updated SELinux policies to the directory:
For examples:
Tip
- Depending on your user permission, you may need to use
sudoto perform these operations. - Be sure to include the
.*at the end of the directory for thesemanage fcontextoperations.
If using a non-default MongoDB data path of
/mongodb/data:If using a non-default MongoDB log directory of
/mongodb/log(e.g. if the log file path is/mongodb/log/mongod.log):
Non-Default MongoDB Ports¶
Tip
Depending on your user permission, you may need to use sudo to
perform the operation.
Optional. Suppress FTDC Warnings¶
The current SELINUX Policy does not allow the MongoDB process to open
and read /proc/net/netstat for Diagnostic Parameters (FTDC). As such,
the audit log may include numerous messages regarding lack of access
to this path.
To track the proposed fix, see https://github.com/fedora-selinux/selinux-policy-contrib/pull/79.
Optionally, as a temporary fix, you can manually adjust the SELinux Policy:
Create a policy file
mongodb_proc_net.te:Once created, compile and load the custom policy module
Procedure¶
Verify that MongoDB has started successfully¶
You can verify that the mongod process has started
successfully by checking the contents of the log file at
/var/log/mongodb/mongod.log
for a line reading
where <port> is the port configured in /etc/mongod.conf, 27017 by default.
You can optionally ensure that MongoDB will start following a system reboot by issuing the following command:
Begin using MongoDB.¶
Start a mongo shell on the same host machine as the
mongod. You can run the mongo shell
without any command-line options to connect to a
mongod that is running on your localhost with default
port 27017:
For more information on connecting using the mongo
shell, such as to connect to a mongod instance running
on a different host and/or port, see The mongo Shell.
To help you start using MongoDB, MongoDB provides Getting Started Guides in various driver editions. See Getting Started for the available editions.
Uninstall MongoDB Community Edition¶
To completely remove MongoDB from a system, you must remove the MongoDB applications themselves, the configuration files, and any directories containing data 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 your configuration and data is backed up before proceeding.
Remove Packages.¶
Remove any MongoDB packages that you had previously installed.
Remove Data Directories.¶
Remove MongoDB databases and log files.