rpcbind=bitcoind
Within the query you referred to, “bitcoind” is meant to be the network-name of the pc on which bitcoin is working.
# native DNS identify (container identify utilized in my Docker Compose file) rpcbind=bitcoind
Open a command immediate window and sort the command hostname
to search out out the community identify of your laptop. If the hostname proven is squonk, double verify it by utilizing the command nslookup squonk
or equal (e.g. dig squonk
or host squonk
on Linux)
The clue in your log file is that this pair of traces
libevent: getaddrinfo: nodename nor servname supplied, or not identified
Binding RPC on tackle bitcoind port 8332 failed.
If you happen to run bitcoind with the -help choice it tells you
-rpcbind=<addr>[:port]
Bind to given tackle to hear for JSON-RPC connections. Don't expose
the RPC server to untrusted networks resembling the general public web!
This feature is ignored except -rpcallowip can also be handed. Port is
non-obligatory and overrides -rpcport. Use [host]:port notation for
IPv6. This feature might be specified a number of occasions (default:
127.0.0.1 and ::1 i.e., localhost)
You can then change the road within the configurartion file
rpcbind=squonk
Your extract from the log file omits the road earlier than
Binding RPC on tackle 127.0.0.1 port 8332 failed.
However these few traces earlier than the above could inform you a couple of extra necessary drawback that’s the root reason behind your difficulties.