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.
Steps to resolve
-
Open Terminal in Ubuntu.
-
Run the following command:
sudo apt-get install gnupg curl
-
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
-
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
-
Run the following command:
sudo apt-get update
-
Run the following command:
sudo bash install.sh
- Continue with the Evoko Home installation process as documented in the Getting Started guide.