Monday, September 16, 2024

bitcoin core – Unable to start out BitcoinCore: Unable to start out HTTP server. See debug logs for particulars – Bitcoin Stack Change

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 title (container title utilized in my Docker Compose file)
rpcbind=bitcoind

Open a command immediate window and sort the command hostname to search out out the community title of your laptop. If the hostname proven is squonk, double examine it through the use of 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 handle bitcoind port 8332 failed.

In the event you run bitcoind with the -help choice it tells you

  -rpcbind=<addr>[:port]
       Bind to given handle to hear for JSON-RPC connections. Don't expose
       the RPC server to untrusted networks similar to the general public web!
       This selection is ignored except -rpcallowip can also be handed. Port is
       non-compulsory and overrides -rpcport. Use [host]:port notation for
       IPv6. This selection might be specified a number of instances (default:
       127.0.0.1 and ::1 i.e., localhost)

You could possibly 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 let you know a few extra necessary downside that’s the root explanation for your difficulties.

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles