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


Prerequisites: Install and download the latest Ubuntu 22.04 LTS from the Ubunto homepage. Download the current version (2.8.2) of Evoko Home. 

 

  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. Close terminal and navigate to Downloads and delete the "Installation_V2.8.2-tar_feb25" folder This is subject to change with later versions.clipboard_ea9c315994430f224e667f5d584401776.png
  7. Open Terminal and run the installation as described in the "Getting Started" article.
  • Was this article helpful?