Meu caso especial é:
iniciar o mongod anteriormente por:
sudo -u mongod mongod -f /etc/mongod.conf
agora quer parar mongod
.
e consulte o documento oficial Stop mongod Processes , tentou:
(1) shutdownServer
mas falhou:
> use admin
switched to db admin
> db.shutdownServer()
2019-03-06T14:13:15.334+0800 E QUERY [thread1] Error: shutdownServer failed: {
"ok" : 0,
"errmsg" : "shutdown must run from localhost when running db without auth",
"code" : 13
} :
_getErrorWithCode@src/mongo/shell/utils.js:25:13
DB.prototype.shutdownServer@src/mongo/shell/db.js:302:1
@(shell):1:1
(2) --shutdown
ainda falhou:
# mongod --shutdown
There doesn't seem to be a server running with dbpath: /data/db
(3) comando de início anterior adicionando --shutdown:
sudo -u mongod mongod -f /etc/mongod.conf --shutdown
killing process with pid: 30213
failed to kill process: errno:1 Operation not permitted
(4) use service
para parar:
service mongod stop
e
service mongod status
show esperado, Active: inactive (dead)
mas mongod
na verdade ainda está em execução, pois pode ver o processo do ps:
# ps -edaf | grep mongo | grep -v grep
root 30213 1 0 Feb04 ? 03:33:22 mongod --port PORT --dbpath=/var/lib/mongo
e finalmente , realmente pare o mongod:
# sudo mongod -f /etc/mongod.conf --shutdown
killing process with pid: 30213
até agora, causa raiz: ainda desconhecida ...
A solução acima da esperança é útil para o seu.
sudo service mongodb [start|stop|restart|status]
.sudo service stop mongodb
resulta em: paragem: serviço não reconhecido