关闭MongoDB的方式:

1、非后台运行时,关闭对话,或者ctrl+c;

2、登录数据库执行:db.shutdownServer();

3、带数据目录,关闭服务器,安全;

mongod --shutdown --dbpath /database/mongodb/data/
/usr/local/mongodb/bin/mongod --shutdown --dbpath /usr/local/mongodb/r4 --port 27021

配置文件

mongod --shutdown -f /etc/mongodb.conf

4、系统kill命令,使用kill -2 PID或者kill -15 PID,建议不要使用kill -9,因为如果 MongoDB 运行在没开启日志(–journal)的情况下,可能会造成数据损失。

云海天教程网,大量的免费MongoDB入门教程,欢迎在线学习!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 如何关闭mongodb