You are not logged in.
Is there a way to get MongoDB Enterprise installed for Arch-Linux?
I do the certification-course. They provide Linux-Packages, but not for ARCH.
A pitty, that they don't even provide Source-Packages.
So what would you say, how can I install it at my Workstation?
Offline
Hi.
Do you mean this MongoDB?
https://aur.archlinux.org/packages/mongodb/
This is from AUR.
Check out the AUR maybe you can get it from there. There were other options there.
You may also double check if the AUR packages are fine before installation.
They are not fully recommended. Use at your own risk. But you should be fine.
https://aur.archlinux.org/
Offline
Don't think it exists.
Create your own PKGBUILD if you have to.
If you don't want to install it as a package, then just install it manually.
Use https://aur.archlinux.org/cgit/aur.git/ … ongodb-bin as reference.
git clone https://aur.archlinux.org/mongodb-bin.git
# then in the PKGBUILD, replace e.g.
# https://repo.mongodb.org/apt/ubuntu/dists/bionic/mongodb-org/${basever}/multiverse/binary-amd64/mongodb-org-server_${pkgver}_amd64.deb
# with
# https://repo.mongodb.com/apt/ubuntu/dists/bionic/mongodb-enterprise/${basever}/multiverse/binary-amd64/mongodb-enterprise-server_${pkgver}_amd64.deb
# then
makepkg -siOffline