Hi, I recently upgraded :
- mongodb-org
- mongodb-org-server
- mongodb-org-shell
- mongodb-org-mongos
- mongodb-org-tools
from v4.2.9 to v5.0.6 in Ubuntu Desktop 20.04.3.
However, now I can not start mongod
as it failed after being started using sudo systemctl start mongod
.
Here is the log :
systemctl status mongod
● mongod.service - MongoDB Database Server
Loaded: loaded (/lib/systemd/system/mongod.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Thu 2022-03-03 07:54:19; 2min 37s ago
Docs: https://docs.mongodb.org/manual
Process: 1452 ExecStart=/usr/bin/mongod --config /etc/mongod.conf (code=exited, status=62)
Main PID: 1452 (code=exited, status=62)
Mar 03 09:54:17 ubuntu systemd[1]: Started MongoDB Database Server.
Mar 03 09:54:19 ubuntu systemd[1]: mongod.service: Main process exited, code=exited, status=62/n/a
Mar 03 09:54:19 ubuntu systemd[1]: mongod.service: Failed with result 'exit-code'.
It is said that status code 62 means : Returned by mongod if the datafiles in --dbpath are incompatible with the version of mongod currently running.
Is MongoDB v5.0.6 incompatible with Ubuntu Desktop 20.04.3 ?
How can I fix and start mongod
normally ?