Skip to main content
Biamp Cornerstone

Mongo DB fails to install on Ubuntu 22.04

Installing Evoko Home 2.8.2 on a Ubuntu 22.04 may fail due to missing mirrors in the .list files and missing GPG keys.

clipboard_ea64e4d685b98b52cf9881516601e400f.png

Steps to resolve

  1. Open Terminal in Ubuntu.

  2. Run the following command: 
    sudo apt-get install gnupg curl

  3. Run the following command:
    curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor && curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor

  4. Run the following command:
    echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list && echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list

  5. Run the following command:
    sudo apt-get update

  6. Run the following command:
    sudo bash install.sh

  7. Continue with the Evoko Home installation process as documented in the Getting Started guide.
  • Was this article helpful?