- Install MongoDB >
- Install MongoDB Community Edition >
- Install MongoDB Community Edition on Linux >
- Install MongoDB Community Edition on Ubuntu >
- Install using .tgz Tarball on Ubuntu
Install using .tgz Tarball on Ubuntu¶
Overview¶
Although the recommended procedure to install is through the
package manager, you can also
install by directly downloading the .tgz file. The following
tutorial downloads the .tgz tarball directly to install MongoDB
4.2 Community Edition on LTS Ubuntu Linux systems.
MongoDB Version¶
This tutorial installs MongoDB 4.2 Community Edition on LTS Ubuntu Linux systems. For other versions of MongoDB, refer to the corresponding version of the manual.
Platform Support¶
Note
MongoDB 4.2 removes support for Ubuntu 14.04.
MongoDB only provides packages for the following 64-bit LTS (long-term support) Ubuntu releases:
- 16.04 LTS (xenial)
- 18.04 LTS (bionic)
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.
Prerequisites¶
Click on the tab for your version of Ubuntu
MongoDB .tar.gz tarballs require installing the following
dependencies:
- Ubuntu 18.04 (Bionic)
- Ubuntu 16.04 (Xenial)
Install the dependencies for Ubuntu 18.04 (Bionic):
Install the dependencies for Ubuntu 16.04 (Xenial):
Install using the .tgz Tarball¶
MongoDB only provides packages for the following 64-bit LTS (long-term support) Ubuntu releases:
- 16.04 LTS (xenial)
- 18.04 LTS (bionic)
See Supported Platforms for more information.
Download the MongoDB .tgz tarball.¶
Download the tarball for your system from the MongoDB Download Center.
Extract the files from the downloaded archive.¶
Using an archive manager program or the tar command, extract the
files.
For example, to extract from the terminal shell, you can use the
following tar command:
Tip
If you downloaded a different MongoDB 4.2 point release,
be sure to modify the command to reflect the correct .tgz
file name.
Optional. Ensure the binaries are in a directory listed in your PATH environment variable.¶
The MongoDB binaries are in the <mongodb-install-directory>/bin/
directory. To avoid having to specify the path to the MongoDB
binaries, you can modify your user’s PATH environment 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.
Alternatively, you can:
- Copy these binaries into a directory listed in your
PATHvariable such as/usr/local/bin, or - Create symbolic links to each of these binaries from a directory
listed in your
PATHvariable.
Run MongoDB Community Edition¶
- Production Notes
- Before deploying MongoDB in a production environment, consider the Production Notes document.
- ulimit Considerations
- Most Unix-like operating systems limit the system resources that a session may use. These limits may negatively impact MongoDB operation. See UNIX ulimit Settings for more information.
- Configuration
- You can configure the MongoDB instance (such as the data directory and log directory specifications) using either the command-line options or a configuration file.
Note
Although the following procedure uses sudo to start the MongoDB
instance as well as to create the directories used by the MongoDB
instance, you may choose to perform the procedure as a different
user.
Create the data and log directories.¶
Note
Depending on user permissions, you may need to sudo mkdir -p
<directory> instead of mkdir -p <directory>. Use or omit
sudo as appropriate. See your linux man pages for information
on mkdir and sudo.
Create a directory where the MongoDB instance stores its data. For example:
Create a directory where the MongoDB instance stores its log. For example:
The user that starts the MongoDB process must have read and write permission to the directories.
Verify that MongoDB has started successfully.¶
Verify that MongoDB has started successfully by
checking the process output for the following line in the
log file /var/log/mongodb/mongod.log:
You may see non-critical warnings in the process output. As long as you see the log line shown above, you can safely ignore these warnings during your initial evaluation of MongoDB.
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.