You already have something running on that IP and port combination.Code:bind: address already in use
I don't have anything to do with ports. I just installed the system and ran unbound first.You already have something running on that IP and port combination.
Think you're confusing dns/unbound withCode:# service unbound onestart
local_unbound that's included with the base OS. You need to service local_unbound start# ll /etc/rc.d/local_unbound
-r-xr-xr-x 1 root wheel 2884 Jun 1 2024 /etc/rc.d/local_unbound*
There's already something listening on port 53. Which is probablyCode:tcp4 0 0 127.0.0.1.53 *.* LISTEN tcp6 0 0 ::1.53 *.* LISTEN
local_unbound, not unbound (which comes from dns/unbound).Think you're confusing dns/unbound withlocal_unboundthat's included with the base OS. You need toservice local_unbound start
Code:# ll /etc/rc.d/local_unbound -r-xr-xr-x 1 root wheel 2884 Jun 1 2024 /etc/rc.d/local_unbound*
There's already something listening on port 53. Which is probablylocal_unbound, notunbound(which comes from dns/unbound).
sudo service local_unbound start
local_unbound already running? (pid=1816).
pal@celebris:~ $ sudo service local_unbound status
local_unbound is running as pid 1816.
sockstat -l4p53Yes, it's enabled in rc.conf:Code:sudo service local_unbound start local_unbound already running? (pid=1816). pal@celebris:~ $ sudo service local_unbound status local_unbound is running as pid 1816.
local_unbound_enable="YES". service local_unbound stop, sysrc -x local_unbound_enable, then service unbound onestart will work.