
The most cleanest way to shutdown MongoDB is by executing the below commands,
> use admin
> db.shutdownServer();
Example:
> use admin
switched to db admin
> db.shutdownServer();
server should be down...
You can also stop MongoDB mongod service running on Ubuntu, run the command sudo service mongod stop
# sudo service mongod stop
or,
# sudo service mongodb stop
* Stopping database mongodb [OK]
You can also check the status of the server using the command,
# sudo service mongodb status
More Posts related to Ubuntu,
- Install Oh My Zsh on Ubuntu Docker complete steps
- Installing Home-brew on Ubuntu
- Install Golang (Go) on Ubuntu
- Install specific JRE on Ubuntu using apt
- How to stop/start/restart apache server using command [Ubuntu]
- How to install zsh shell on Ubuntu
- Quick steps to install Nginx on Ubuntu Linux
- How to know current Ubuntu Linux version via terminal command
- Add new user in Ubuntu Linux using Terminal Command
- Fix Ubuntu /bin/sh: 1: zsh: not found error
- How to install Python on Ubuntu
- [Fix] Ubuntu E: Unable to locate package sudo error
- How to stop MongoDB Server running on Ubuntu
- Install postgres Client using apt-get command
- How to kill service running on a port on Ubuntu Linux
- [fix] openssl No such file or directory error C++
- Fix - sudo: systemctl: command not found
- Access Windows share folder in Ubuntu Device in Network
- Add or remove users from sudo group - Ubuntu
- Quickly install Apache Server on Ubuntu Linux
- Fix: Ubuntu (Linux) - bash: sudo: command not found error
More Posts:
- Splitting String in Java with Examples - Java
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ - Java
- How to remove/delete a directory in Linux/macOs - Linux
- Fix: Cannot contact reCAPTCHA. Check your connection and try again. - Google
- Android Constant and Resource Type Mismatches Lint - Android
- Microsoft Teams - Where would you like to start - Business or Personal - Teams
- How to add Date and Time to Windows Notepad File - NotepadPlusPlus
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error - Java