this post was submitted on 12 Jul 2024
31 points (100.0% liked)

Selfhosted

45475 readers
513 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

I got an home server that is running docker for all my self hosted apps. But sometimes I accidentally trigger Earlyoom by remotely starting expensive docker builds, which kill docker.

I don't have access to my server outside of my home network, so I can't manually restart docker in those situations.

What would be the best way to restart it automatically? I don't mind doing a full system restart if needed

all 32 comments
sorted by: hot top controversial new old
[–] [email protected] 17 points 8 months ago (1 children)

Use -m and limit the build job's memory so it doesn't kill the docker daemon.

[–] [email protected] 1 points 8 months ago (4 children)

Fair enough. But I don't want a bandaid fix solution. Even more that I do all my docker through portainer and the option isn't there.

It could also be useful if a container got a memory leak and is unbounded

[–] [email protected] 16 points 8 months ago (1 children)

The other person may have responded with a fair amount of hostility, but they're absolutely correct. I run Kubernetes clusters hosting millions of containers across hundreds of thousands of VMs at my job, and OOMKills are just a fact of life. Apps will leak memory, and you're powerless to fix it unless you're willing to debug the app and fix the leak. It's better for the container to run out of memory and trigger a cgroup-scoped OOM kill. A system-wide OOM kill will murder the things you love, shit in your hat, and lick your face like David Tennant licked Krysten Ritter.

[–] [email protected] 1 points 8 months ago (2 children)

Oh that's not a problem to let a container get killed. It's perfectly fine. What I want is just not crippling my whole server because one container did a funny.

If it keeps docker and the portainer VM I'll be 100% ok, because I can just restart it. I don't want to have remote access to my server outside of my home for security reasons, so this is just the bare minimum

[–] [email protected] 5 points 8 months ago

Those remote access fears can be solved with a wireguard VPN

[–] [email protected] 1 points 8 months ago

I don't want to have remote access to my server outside of my home for security reasons, so this is just the bare minimum

What are your security concerns?

[–] [email protected] 10 points 8 months ago

This is not a bandaid, this is the solution. What you try is, at least for this scenario, the band aid.

[–] [email protected] 4 points 8 months ago

??? Your original proposed solution is literally a bandaid fix.

[–] [email protected] 14 points 8 months ago

Systemd has config options for automatic restart of crashed services. https://www.freedesktop.org/software/systemd/man/latest/systemd.service.html#Restart=

[–] [email protected] 5 points 8 months ago* (last edited 8 months ago)

Do you have your services set up with restart=unless-stopped? I wonder if that would auto restart them after OOM.

[–] [email protected] 2 points 8 months ago (2 children)

I don't know the best way but I would use cron and start docker every minute (if it's not running).

[–] [email protected] 9 points 8 months ago (2 children)

I don't know the best way

Apparently...

Don't do this. Either don't go OOM to begin with (somebody else told you how to limit container memory usage} and/or configure systemd to restart docker if it quits. I'm surprised systemd isn't already.

[–] [email protected] 1 points 8 months ago* (last edited 8 months ago) (1 children)

It's usually good to state why something is good or bad :)

[–] [email protected] 1 points 8 months ago* (last edited 8 months ago)

It's fairly obvious I feel.

You're saying rather than use a system tool that does the exact thing that you want you should bodge together a cron job that accomplishes your goal but doesn't actually do what you want.

Like say you want to stop the docker service for some reason? systemctl stop docker will do that. Then your cron job will restart it. That's not the desired outcome. You want the service running IF the service SHOULD be running. Which is a different thing than "always running". And its' exactly what you get for free with systemd without any silly custom BS.

[–] [email protected] 1 points 8 months ago (1 children)

Seems like the best solution. I'll look into it

[–] [email protected] 1 points 8 months ago (1 children)

Seems like the best solution.

Over using a system tool designed to monitor and restart services that stop?

[–] [email protected] 1 points 8 months ago (1 children)
[–] [email protected] 2 points 8 months ago

Sorry - was ambiguous and thought you were saying the "cron" thing sounded best.

[–] [email protected] 1 points 8 months ago

I'll try that. I know that systemctl has a start-or-reload command, but is there any "start-or-ignore" commands? Or start flags?

[–] [email protected] 1 points 8 months ago (1 children)

You should be able to make docker exempt from early oom. Check it's github for instructions.

[–] [email protected] 1 points 8 months ago

But can it prevent killing only docker, and not the build/big containers processes?