Install Mosquito

This revision is from 2024/02/08 18:11. You can Restore it.

git clone https://github.com/miti0/mosquito.git

cd mosquito

pip install -r requirements.txt

sudo apt-get install gnupg curl

To import the MongoDB public GPG key, 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

Create the /etc/apt/sources.list.d/mongodb-org-7.0.list file for Ubuntu 22.04 (Jammy):

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

Issue the following command to reload the local package database:

sudo apt-get update

Install the MongoDB packages

sudo apt-get install -y mongodb-org

sudo systemctl start mongod

  

📝 📜 ⏱️ ⬆️