Home > OS >  Mongod does not start: mongod.service: Failed with result 'signal'
Mongod does not start: mongod.service: Failed with result 'signal'

Time:12-13

I currently have MongoDB 4.4 installed, as my system does not support 5.0. I have previously had 4.4 installed on Arch Linux, however when I moved over to Ubuntu and tried to run mongod, I get this result from systemd:

● mongod.service - MongoDB Database Server
     Loaded: loaded (/lib/systemd/system/mongod.service; disabled; vendor preset: enabled)
     Active: failed (Result: signal) since Fri 2021-12-10 15:57:00 CST; 2min 3s ago
       Docs: https://docs.mongodb.org/manual
    Process: 4369 ExecStart=/usr/bin/mongod --config /etc/mongod.conf (code=killed, signal=ILL)
   Main PID: 4369 (code=killed, signal=ILL)

Dec 10 15:57:00 system systemd[1]: Started MongoDB Database Server.
Dec 10 15:57:00 system systemd[1]: mongod.service: Main process exited, code=killed, status=4/ILL
Dec 10 15:57:00 system systemd[1]: mongod.service: Failed with result 'signal'.

MongoDB fails before logs can be created.

CodePudding user response:

While this doesn't completely solve the issue, I'm fine with this resolution: For whatever reason, 4.2 works fine, but 4.4 doesn't, even though I was completely fine running 4.4 on Arch.

  • Related