Saturday, February 26, 2022

[SOLVED] MongoDB failed (result: core-dump)?

Issue

I'm attempting to setup MongoDB on Ubuntu 20.04.02 LTS by following the rel="nofollow noreferrer">documentation. I have ensured this is a fresh install. However an error persists when I verify if the MongoDB install started succesfully by typing in:

sudo systemctl status mongod

● mongod.service - MongoDB Database Server Loaded: loaded (/lib/systemd/system/mongod.service; disabled; vendor prese> Active: failed (Result: core-dump) since Wed 2021-08-11 12:59:20 UTC; 49s > Docs: https://docs.mongodb.org/manual Process: 3190 ExecStart=/usr/bin/mongod --config /etc/mongod.conf (code=dum> Main PID: 3190 (code=dumped, signal=ILL)

Aug 11 12:59:19 discorddomagoj systemd1: Started MongoDB Database Server. Aug 11 12:59:20 discorddomagoj systemd1: mongod.service: Main process exited,> Aug 11 12:59:20 discorddomagoj systemd1: mongod.service: Failed with result '>

Picture of problem for clarity: picture of problem


Solution

1.Stop the mongod process by issuing the following command:-

    sudo service mongod stop
    

2.Remove any MongoDB packages that you had previously installed:-

    sudo apt-get purge mongodb-org*
    

3.Remove MongoDB databases and log files:-

    sudo rm -r /var/log/mongodb
    sudo rm -r /var/lib/mongodb
    

4.Then reinstall mangodb 4.4.8

5.Import the public key used by the package management system:-

    wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
    

6.The following instruction is for Ubuntu 20.04 (Focal):-

    echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
    

7.Update Apt

    sudo apt-get update
    

8.Install mongodb

    sudo apt-get install mongodb-org=4.4.8 mongodb-org-server=4.4.8 mongodb-org-shell=4.4.8 mongodb-org-mongos=4.4.8 mongodb-org-tools=4.4.8
    

9.Use mongod --version to check its succesfully installed

10.If u encounter any error while using mongod

    sudo mkdir /data
    cd /data
    sudo mkdir db
    sudo pkill -f mongod
    

11.Then use sudo mongod command.



Answered By - Abdul Wahhab
Answer Checked By - Timothy Miller (WPSolving Admin)