Install Mongodb on Ubuntu Server 22.04

 Little set of instructions to install Mongodb on Ubuntu Server 22.04


  1. sudo apt install dirmngr gnupg apt-transport-https ca-certificates software-properties-common
  2. echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
  3. Go to root user sudo -i then paste this wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
  4. Still run dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb command on the root user, and so on.
  5. apt update
  6. apt install libssl1.1
  7. wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -
  8. echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list
  9. apt update
  10. apt install -y mongodb-org