Installing Older Versions of MongoDB on Arch Linux
2023-09-11
Iāve recently been using Arch Linux for my main work environment on my ThinkPad X260. Itās been great. As someone who is constantly drawn to minimalist operating systems such as Alpine or OpenBSD, itās nice to use something like Arch that boasts that same minimalist approach but with greater documentation/support.
Another major reason for the switch was the need to run older versions of āservicesā locally. Most people would simply suggest using Docker or vmm, but I personally run projects in self-contained, personalized directories on my system itself. I am aware of the irony in that statement⦠but thatās just my personal preference.
So I thought I would share my process of setting up an older version of MongoDB (3.4 to be precise) on Arch Linux.
AUR to the Rescue
You will need to target the specific version of MongoDB using the very awesome AUR packages:
yay -S mongodb34-bin
Follow the instructions and youāll be good to go. Donāt forget to create the /data/db directory and give it proper permissions:
mkdir -p /data/db/
chmod -R 777 /data/db
What About My āToolsā?
If you plan to use MongoDB, then you most likely want to utilize the core database tools (restore, dump, etc). The problem is you canāt use the default mongodb-tools package when trying to work with older versions of MongoDB itself. The package will complain about conflicts and ask you to override your existing version. This is not what we want.
So, youāll have to build from source locally:
git clone https://github.com/mongodb/mongo-tools
cd mongodb-tools
./make build
Then youāll need to copy the built executables into the proper directory in order to use them from the terminal:
cp bin/* /usr/local/bin/
And thatās it! Now you can run mongod directly or use systemctl to enable it by default. Hopefully this helps anyone else curious about running older (or even outdated!) versions of MongoDB.