aboutsummaryrefslogtreecommitdiff
path: root/build/posts/mongodb-arch/index.html
blob: 5887a34489c5e6c05ea5dc2bd83fc492204185b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="color-scheme" content="dark light">
	<link rel="icon" href="data:,">
	<title>Installing Older Versions of MongoDB on Arch Linux</title>
	<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
	<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
</head>

<nav>
	<a href="#menu">Menu &darr;</a>
</nav>

<main>
<h1 id="installing-older-versions-of-mongodb-on-arch-linux">Installing Older Versions of MongoDB on Arch Linux</h1>
<p>2023-09-11</p>
<p>I&#8217;ve recently been using Arch Linux for my main work environment on my ThinkPad X260. It&#8217;s been great. As someone who is constantly drawn to minimalist operating systems such as Alpine or OpenBSD, it&#8217;s nice to use something like Arch that boasts that same minimalist approach but with greater documentation&#47;support.</p>
<p>Another major reason for the switch was the need to run older versions of &#8220;services&#8221; 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&#8230; but that&#8217;s just my personal preference.</p>
<p>So I thought I would share my process of setting up an older version of MongoDB (3.4 to be precise) on Arch Linux.</p>
<h2 id="aur-to-the-rescue">AUR to the Rescue</h2>
<p>You will need to target the specific version of MongoDB using the very awesome AUR packages:</p>
<pre><code>yay -S mongodb34-bin
</code></pre>
<p>Follow the instructions and you&#8217;ll be good to go. Don&#8217;t forget to create the <code>&#47;data&#47;db</code> directory and give it proper permissions:</p>
<pre><code>mkdir -p &#47;data&#47;db&#47;
chmod -R 777 &#47;date&#47;db
</code></pre>
<h2 id="what-about-my-tools">What About My &#8220;Tools&#8221;?</h2>
<p>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&#8217;t use the default <code>mongodb-tools</code> 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 <em>not</em> what we want.</p>
<p>So, you&#8217;ll have to build from source locally:</p>
<pre><code>git clone https:&#47;&#47;github.com&#47;mongodb&#47;mongo-tools
cd mongodb-tools
.&#47;make build
</code></pre>
<p>Then you&#8217;ll need to copy the built executables into the proper directory in order to use them from the terminal:</p>
<pre><code>cp bin&#47;* &#47;usr&#47;local&#47;bin&#47;
</code></pre>
<p>And that&#8217;s it! Now you can run <code>mongod</code> directly or use <code>systemctl</code> to enable it by default. Hopefully this helps anyone else curious about running older (or even outdated!) versions of MongoDB.</p>
<footer role="contentinfo">
    <h2>Menu Navigation</h2>
    <ul id="menu">
        <li><a href="/">Home</a></li>
        <li><a href="/projects">Projects</a></li>
        <li><a href="/uses">Uses</a></li>
        <li><a href="/wiki">Wiki</a></li>
        <li><a href="/resume">Resume</a></li>
        <li><a href="/colophon">Colophon</a></li>
        <li><a href="/now">Now</a></li>
        <li><a href="/donate">Donate</a></li>
        <li><a href="/atom.xml">RSS</a></li>
        <li><a href="#top">&uarr; Top of the page</a></li>
    </ul>
    <small>
        Built with <a href="https://barf.btxx.org">barf</a>. <br>
        Feeds: <a href="/atom.xml">Atom</a> & <a href="/rss.xml">RSS</a><br>
        Maintained with ♥ for the web. <br>
        Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
        The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
    </small>
</footer>