Hey everyone,
If you run a Hive-Engine node, this one might save you a few hours of chasing the wrong problem.
I had a power outage, my machine came back up, and suddenly mongod would not stay running. At first glance it looked exactly like the kind of issue you would expect after an unclean shutdown: lock file warnings, recovery logs, and a database that simply refused to stay alive.
That turned out to be only half the story.
The outage was real. The unclean shutdown was real. But the actual reason mongod kept dying was not plain old data corruption. It was a startup-environment difference between launching MongoDB manually and launching it through systemd.

After the outage, mongod would start and then die roughly 30 seconds later. Sometimes it stretched to about a minute, but it never stayed up.
systemctl status mongod showed the process exiting with a segmentation fault:
Main process exited, code=killed, status=11/SEGV
The MongoDB journal and log showed a few important details:
That was the first clue that this was not just "MongoDB cannot open the data files."
Because the problem started immediately after a power outage, I assumed I was dealing with corruption somewhere in WiredTiger metadata or an index file that did not survive the abrupt shutdown.
So I ran:
sudo systemctl stop mongod
sudo mongod --repair --dbpath /var/lib/mongodb
I should note one important detail here: I did not take a fresh backup right before running repair, because /var is already covered by my regular Btrfs snapshots. That meant I had multiple rollback points available if repair made the situation worse.
The first run actually failed because of open file limits:
Too many open files
Running repair again with a much higher ulimit -n let it complete successfully with exit code 0.
That made it look like the problem might be fixed.
It was not.
After repair, mongod still crashed when started from systemd.
Repair did leave me with a real permission problem afterward. mongod started failing immediately with:
/var/lib/mongodb/WiredTiger.turtle: Permission denied
That part was easy to fix:
sudo chown -R mongodb:mongodb /var/lib/mongodb /var/log/mongodb
Once ownership was corrected, the original crash pattern returned: MongoDB started successfully, ran for a short period, then segfaulted.
So at that point I knew I had fixed a side effect of repair, but not the underlying problem.
The breakthrough came when I stopped testing with systemd and launched MongoDB manually as the mongodb user:
sudo -u mongodb bash -lc 'ulimit -n 65535; /usr/bin/mongod --config /etc/mongod.conf'
And that version stayed up.
That immediately narrowed the scope of the problem. If the same binary and the same data directory work in the foreground, then the problem is probably not the database files themselves. It is probably something about the service environment.
Looking at the packaged unit file showed this:
[Service]
Environment="MONGODB_CONFIG_OVERRIDE_NOFORK=1"
Environment="GLIBC_TUNABLES=glibc.pthread.rseq=0"
LimitNOFILE=64000
My manual foreground run differed in two meaningful ways:
GLIBC_TUNABLES=glibc.pthread.rseq=0At that point the question was simple: which difference was actually causing the segfault?
I reproduced the systemd environment as closely as possible in the foreground:
sudo -u mongodb env GLIBC_TUNABLES=glibc.pthread.rseq=0 bash -lc 'ulimit -n 64000; /usr/bin/mongod --config /etc/mongod.conf'
That crashed immediately with a segmentation fault.
That was the smoking gun.
The trigger was not the outage anymore. The trigger was the GLIBC_TUNABLES=glibc.pthread.rseq=0 environment variable that the systemd unit was injecting.
The power outage still mattered, because it sent me down the path of recovery and repair. But the repeatable crash turned out to be tied to the systemd startup environment, not just the recovered dataset.
In my case:
8.2.5mongod.service setting GLIBC_TUNABLES=glibc.pthread.rseq=0That combination was enough to make mongod segfault when started as a service, while the same binary stayed alive when launched manually without that tunable.
I created a systemd override and removed the GLIBC_TUNABLES line while also raising the file descriptor limit to match the healthier manual environment.
sudo systemctl edit mongod
I added:
[Service]
Environment=
Environment="MONGODB_CONFIG_OVERRIDE_NOFORK=1"
LimitNOFILE=524288
Then:
sudo systemctl daemon-reload
sudo systemctl restart mongod
The important part is the blank Environment= line. That clears the inherited environment entries from the packaged unit so you can add back only the safe ones you want.
GLIBC_TUNABLES=glibc.pthread.rseq=0?From a practical node-operator perspective, the risk appears low compared to leaving a guaranteed crash in place.
What you are giving up is not data safety logic. You are removing a glibc runtime tuning knob, not disabling journaling, replication, or WiredTiger recovery.
The likely tradeoff is one of these:
What you are not doing:
In my case, leaving it enabled caused reliable segfaults. Removing it allowed the service to behave like the stable foreground launch.
Hive-Engine nodes put MongoDB under a pretty specific workload:
That makes it easy to assume every MongoDB startup issue is a data problem. Sometimes it is. But if:
mongod starts fine in the foregroundmongod only dies under systemdthen compare the service environment before you start tearing apart the database.
The outage was the event that exposed the issue, but it was not the full cause of the persistent crash.
If your Hive-Engine node's MongoDB instance keeps segfaulting after a reboot or power event, test these two paths:
mongodb user in the foreground.systemd unit with systemctl cat mongod.If your unit includes:
Environment="GLIBC_TUNABLES=glibc.pthread.rseq=0"
then it is worth testing whether that line is the actual trigger.
Sometimes the difference between "corrupt data" and "broken service environment" is just one env var.
As always,
Michael Garcia a.k.a. TheCrazyGM
Great detective work Batman!
!PIMP
!PAKX
!PIZZA
View or trade
PAKXtokens.Use !PAKX command if you hold enough balance to call for a @pakx vote on worthy posts! More details available on PAKX Blog.
$PIZZA slices delivered:
@ecoinstant(1/20) tipped @thecrazygm
Learn more at https://hive.pizza.
Systemd logs were full of zombie processes, never would’ve thought that was the real issue.
Great. Thanks for letting me know.
I have always had great admiration for people who nderstand and formulate the goobledegook that sits in the background of anything internetty.
As a complete technophobe this is way above my pay grade!!