mongodb II
(PDF)
Posted April 12th, 2024
mongodb installation woes
Installation on aws 2023 /aws 2 So the general advice on the net is to do: dnf install mongodb-org When you get to mongosh ... you lose... You'll get an error like: <code> [root@groupcorners /]# mongosh And its all very sad! So... to fix this: <code> dnf remove mongdb-org dnf install ongodb-mongosh-shared-openssl3 dnf install mongodb-org </code> Somehow installing mongdb-org straight gets the wrong version of mongosh installed. No one likes dependencies. Now at least mongosh works. Wish I knew where to send this bit so it gets fixed! |