How to Uninstall MongoDB
- Uninstall MongoDB from Ubuntu Linux
- Uninstall MongoDB from MacOS
- Uninstall MongoDB from Windows
- MongoDB Atlas
To remove MongoDB from your computer, you must first remove the MongoDB services, databases, and log files.
Using this MongoDB article, you will be able to uninstall MongoDB from Ubuntu Linux, Mac, and Windows. Make sure to keep a backup of your data, as once you uninstall, it cannot be reversed.
Every new version of MongoDB brings new features. MongoDB 5.0, for example, includes time-series collections, window functions, online archiving, and other features.
This is the perfect in-depth tutorial to help you uninstall your prior MongoDB version and get started with the latest versions if you plan to install a new version of MongoDB. We’ll also go through the MongoDB Atlas cluster, which offers a download-free alternative to using MongoDB.
This MongoDB article will discuss in detail how to uninstall MongoDB from:
- Ubuntu Linux
- Mac
- Windows
Uninstall MongoDB from Ubuntu Linux
Stop the daemon process and delete the MongoDB applications, configuration files, data files, and log files to uninstall MongoDB from Ubuntu Linux. All of this should be done from the terminal.
The user must have sudo
access, i.e., a superuser. Log in as an admin and join the sudo
group to gain sudo
access.
Steps for Uninstalling MongoDB from Ubuntu Linux
To uninstall MongoDB, run the following commands one by one.
-
Stop the MongoDB process.
sudo service mongod stop
-
Completely remove the installed MongoDB packages.
sudo apt-get purge mongodb-org*
-
Remove the data directories, MongoDB database(s), and log files.
sudo rm -r /var/log/mongodb /var/lib/mongodb
To verify that MongoDB has been successfully uninstalled, type the command below.
service mongod status
If the user wishes to reinstall MongoDB on Linux, search the following links on your search engine below.
- Install MongoDB on Linux
- Install MongoDB Community Edition on Ubuntu
- Install MongoDB Community Edition on CentOS
- Install MongoDB Community Edition on Red Hat
You may also create a free MongoDB Atlas cluster to access the MongoDB database as a service without having to install/uninstall anything.
Uninstall MongoDB from MacOS
To remove any version of MongoDB from your macOS, follow the below steps on the terminal.
-
Check if any
mongo
service is running.launchctl list | grep mongo
-
If you had installed MongoDB using Homebrew, unload MongoDB.
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mongodb-community.plist rm -f ~/Library/LaunchAgents/homebrew.mxcl.mongodb-community.plist launchctl remove homebrew.mxcl.mongodb-community
-
Kill the
mongod
process if it exists.pkill -f mongod
-
If you have installed MongoDB using
brew
, uninstall MongoDB with the below command.brew uninstall mongodb-community brew uninstall mongodb-database-tools brew uninstall mongosh brew untap mongodb/brew
-
If you installed MongoDB manually (without Homebrew), then use:
rm -rf <yourmongodb_folder>
-
Remove database files.
rm -rf /usr/local/var/mongodb
To check if MongoDB has been uninstalled properly, check if any MongoDB files are still present.
ls -al /usr/local/bin/mongo*
zsh: no match found: /usr/local/bin/mongo*
For installing a newer MongoDB version, search for Install MongoDB
on macOS on your search engine. Alternatively, avoid the need for installing/uninstalling in the future by trying MongoDB Atlas.
Uninstall MongoDB from Windows
The user can uninstall MongoDB from Windows using any of the following options.
Uninstall MongoDB using Apps and Features
- Open the Windows Start menu and look for
Apps and Features
system settings. - Select the MongoDB application from the list of applications displayed. You can also look for MongoDB in the list.
- Click on the MongoDB app name to uninstall.
Uninstall MongoDB using Control Panel (Windows 10)
- Using the Start menu or a command prompt, go to Control Panel (control command).
- When the Control Panel is open, go to the
Programs
/Programs and Features
section and selectUninstall a program
. - Select and right-click on MongoDB.
- Click
Uninstall
. - The user will be asked to confirm the uninstall by Windows. Select
Yes
.
Regardless of how you remove MongoDB on Windows, you must restart your computer for the changes to take effect.
The official MongoDB documentation website has instructions for reinstalling MongoDB on Windows. Alternatively, consider MongoDB Atlas to avoid future installation/uninstallation requirements.
MongoDB Atlas
Besides the fact that you don’t have to install or uninstall the MongoDB database on your machine, there are several benefits to utilizing MongoDB Atlas.
MongoDB Atlas is a cloud-based database with several features, including built-in security and automated backups.