this post was submitted on 18 Jun 2023
5 points (85.7% liked)

Selfhosted

39257 readers
214 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 1 year ago
MODERATORS
 

Hi all,

I did originally have this working no problem, until I rebooted my vm. Now I get this error when trying to access the site in all browsers:

404: FetchError: request to http://lemmy:8536/api/v3/site? failed, reason: getaddrinfo EAI_AGAIN lemmy

When I check out the docker-compose logs, I see this:

Error: LemmyError { message: Some("Cannot have both private instance and federation enabled."), inner: Cannot have both private instance and federation enabled., context: "SpanTrace" }

Can anyone point me to where I need to be looking please?

Thanks!

top 4 comments
sorted by: hot top controversial new old
[–] darmok@darmok.xyz 3 points 1 year ago (2 children)

I ran into this at one point as well. You can unset the private instance flag manually in the database and restart to get up and running again.

First connect to psql:

docker-compose exec postgres psql -U lemmy

Then run an update to unset the flag:

lemmy=# update local_site set private_instance = false;

Which should update 1 row (only 1 row in that table if you're on a typical install)

[–] rs5th@lemmy.scottlabs.io 1 points 1 year ago

Oh nice, that’s better than my solution. Less risky than downgrading.

[–] sum_yun_guy@lemmy.world 1 points 1 year ago

That worked! Thanks so much to both of you :) Such a small change was driving me crazy

[–] rs5th@lemmy.scottlabs.io 1 points 1 year ago* (last edited 1 year ago)

This is a change with 0.17.4. You cannot have both federation enabled and the private instance box checked. You might try downgrading to the 0.17.3 image (so that you can get into the UI) and unchecking either the private or federation boxes (whichever way you wanna go). I’d also suggest pinning the docker image versions, as I bet you’ve got latest set (or nothing set, which I believe also grabs latest), and the vm reboot prompted docker to go grab the latest image on startup. Surprise upgrades probably aren’t what you want.

load more comments
view more: next ›