Vous pouvez tuer le précédent mongod instance et démarrez la nouvelle.
Pour tuer l'instance précédente de mongod, recherchez d'abord une liste de tâches en cours d'exécution sur votre machine en tapant,
sudo lsof -iTCP -sTCP:LISTEN -n -P
Rechercher mongod COMMAND et son PID et tapez,
sudo kill <mongo_command_pid>
Maintenant, démarrez votre instance mongod en tapant,
mongod
Vous pouvez voir MongoDB s'exécuter avec succès.