mongo的启动和终止
建议先设置好配置文件/etc/mongod.conf后,每次手动用命令启动
mongod -f /etc/mongod.conf
mongod -f /etc/mongod.conf
mongod --dbpath=/data0/MongoDB/db --logpath=/data0/mongodb/log/mongodb.log --fork
强制关闭MongoDB(不建议使用);
service mongod stop
或者,从MongoDB的admin中关闭(推荐用这种方法):
>use admin
switched to db admin
>db.shutdownServer()
server should be down...
或者
mongod --shutdown
使用shutdownServer关闭MongoDB,如有MongoDB主从服务器,则在服务关闭前同步主从服务器;强制关闭则不会