我知道如何关闭Mongo,不确定它是否正确。
use admin
db.shutDownServer()
这对Meteor Mongo没有影响。 FYI最近开始学习如何使用电脑,原谅缺乏能力。
答案 0 :(得分:3)
如果要在系统终端中关闭mongo server run follow命令:
mongod --shutdown
如果要退出mongo shell,请使用exit
命令
如果你真的想强行关闭你的内置meteor mongo(我不知道为什么),你应该使用meteor mongo
去meteor mongo shell并运行下一个:
use admin
db.adminCommand({shutdown : 1, force : true})