$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

MongoDB Installation in Mageia – Step-by-step

August 29, 2021 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading MongoDB

    Download MongoDB for Mageia GNU/Linux

    MongoDB for Mageia

    Choose the Red Hat Linux 8 Release!

  2. 3. Making Directory

    Then to Make Needed Directory
    Run:

    su -c "mkdir -p /data/db"

    If Got “User is Not in Sudoers file” then see: How to Enable sudo
    Then Set the Right Permissions:

    su -c "chmod g+w /data/db"

    The User Running the MongoDB Server need Write Permission on /data/db!

  3. 4. Installing MongoDB

    Now to Install MongoDB for Mageia
    Simply play:

    sudo su -c "dnf install ~/Downloads/mongodb*.rpm"

    But if you are in Trouble to Find the Location on Terminal then See: How to Access Downloads Folder from Browser.

Contents