How to install mongodb on Linux Mint 21, Cinammon

Questions about applications and software
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
MrCipher691
Level 1
Level 1
Posts: 7
Joined: Fri May 07, 2021 10:14 pm

How to install mongodb on Linux Mint 21, Cinammon

Post by MrCipher691 »

Unable to install mongodb in linux mint 21

using command =

Code: Select all

wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
throws back error:
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).

Please help me out, I'm a beginner.
Last edited by LockBot on Thu Feb 09, 2023 11:00 pm, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: How to install mongodb on Linux Mint 21, Cinammon

Post by Cosmo. »

As this is paid software you should get help there.
MrCipher691
Level 1
Level 1
Posts: 7
Joined: Fri May 07, 2021 10:14 pm

Re: How to install mongodb on Linux Mint 21, Cinammon

Post by MrCipher691 »

mongodb community edition is a free software, I will contact them if need be. Bu till that time is there any way in which you can help me on this one.
Cosmo.
Level 24
Level 24
Posts: 22968
Joined: Sat Dec 06, 2014 7:34 am

Re: How to install mongodb on Linux Mint 21, Cinammon

Post by Cosmo. »

mrsaad
Level 1
Level 1
Posts: 1
Joined: Sat Sep 17, 2022 4:29 pm

Re: How to install mongodb on Linux Mint 21, Cinammon

Post by mrsaad »

I have linux mint 21 vanessa
And this solve my probleb.
Try this.

Code: Select all

wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list

rm /etc/apt/sources.list.d/impish-security.list

wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb

sudo dpkg -i ./libssl1.1_1.1.0g-2ubuntu4_amd64.deb

rm -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb

sudo apt-get update

sudo apt-get install libssl1.1

sudo apt install mongodb-org

sudo systemctl start mongod

sudo systemctl enable mongod

mongo
Locked

Return to “Software & Applications”