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 seek out out the community identify of your pc. 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 offered, or not recognized
Binding RPC on handle bitcoind port 8332 failed.
When you run bitcoind with the -help possibility it tells you
-rpcbind=[:port]
Bind to given handle to pay attention for JSON-RPC connections. Don't expose
the RPC server to untrusted networks equivalent to the general public web!
This selection is ignored until -rpcallowip can also be handed. Port is
non-compulsory and overrides -rpcport. Use [host]:port notation for
IPv6. This selection may be specified a number of instances (default:
127.0.0.1 and ::1 i.e., localhost)
You may then change the road within the configurartion file
rpcbind=squonk
Your extract from the log file omits the road earlier than
Binding RPC on handle 127.0.0.1 port 8332 failed.
However these few traces earlier than the above might inform you a few extra essential downside that’s the root explanation for your difficulties.
