unbound exited with code 1
Closed this issue · 14 comments
Describe the bug
When trying to create and run the unbound container, it fails with exit code 1.
To Reproduce
- Create unbound container using docker compose
- Run it
Expected behavior
Unbound works
Please complete the following information:
- Raspberry Pi 400
- Ubuntu Server 24.04 LTS
- Arm64 / aarch64
- Latest stable version of unbound
Additional context
Happens on every other docker unbound there is
Will the container spin up with the minimal config?
Please share your unbound.conf(s) and your compose file.
server:
verbosity: 0
access-control: 10.8.1.0/24 allow
interface: 0.0.0.0
port: 5335
do-ip4: yes
do-udp: yes
do-tcp: yes
do-ip6: no
prefer-ip6: no
# root-hints: "/var/lib/unbound/root.hints"
harden-glue: yes
harden-dnssec-stripped: yes
use-caps-for-id: no
edns-buffer-size: 1232
prefetch: yes
num-threads: 1
# so-rcvbuf: 1m Causes warning
private-address: 192.168.0.0/16
private-address: 169.254.0.0/16
private-address: 172.16.0.0/12
private-address: 10.0.0.0/8
private-address: fd00::/8
private-address: fe80::/10
It did boot with the minimal config and the only difference from my config is the timezone and the unbound.conf. I assume it would not be the timezone but I'll add the timezone really quickly to rule it out fully.
I don't know what is wrong with the unbound.conf as it is a pretty much 1 to 1 copy from the pihole config
Edit: added the timezone + docker network and it still works so something is wrong with my unbound.conf
Also just a question, on the docs it says there is an optional redis database, what is the point of this and does it make performance/security any better? Or is it just worth using unbound's cache
Please use the included unbound.conf or change at least the following entries (see the troubleshooting section in the documentation:
...
- You'd like to use a different
unbound.conf
than the oneincluded
? No problem, just make sure to change at least the following settings and fix crucial paths, otherwise the container will fail to start:
server:
username="" # Not set in config but compose or command if needed
chroot="" # Distroless, so no chroot necessary
directory="/usr/local/unbound" # This is the folder where Unbound lives in
...
Redis speed up the things by keeping entries in a memory cache so unbound doesn't need to make a recursive query to resolve a domain.
Oh thank you so much
Is the default unbound.conf still good?
The one included? Sure it is. Just adapt this and that to your environment and you're all set.
Hey, how can i check if my redis setup is working? I actually had a problem with your redis.conf but i fixed it. I don't see anything from unbound in logs about redis but I see redis starting up in logs.
You could use the redis cli:
redis-cli -s //path/redis.sock
May I ask what problem you faced with the provided redis.conf?
I verified that the redis instance is running and working well with my unbound instance. Great work btw on all of this its the best work I've ever seen for an unbound docker instance and you give great support to your users.
The redis.conf issue was on line 1158 in your provided redis.conf, the value 'lru' is not a valid value and as you can see in the comments above the closest thing I saw was allkeys-lru so I just used that.
Thank you for your kind words! Do you want to correct that to allkeys-lru
?
Done, thank you so much again for your support! I will close this now