From 07e4a2dafe248280b5610f8c7d09b0f30b530f54 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Mon, 10 Jun 2024 09:41:25 -0400 Subject: Initial modifications to rebuilt only changed files based on mod date, performance updates --- build/mongodb-arch/index.html | 63 ------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 build/mongodb-arch/index.html (limited to 'build/mongodb-arch/index.html') diff --git a/build/mongodb-arch/index.html b/build/mongodb-arch/index.html deleted file mode 100644 index b8842c3..0000000 --- a/build/mongodb-arch/index.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - Installing Older Versions of MongoDB on Arch Linux - - - - - - - -
-

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 /date/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.

- \ No newline at end of file -- cgit v1.2.3-54-g00ecf