LinuxCommandLibrary

bitcoind

Bitcoin Core daemon.

TLDR

Start the Bitcoin Core daemon (in the foreground)

$ bitcoind
copy


Start the Bitcoin Core daemon in the background (use bitcoin-cli stop to stop)
$ bitcoind -daemon
copy


Start the Bitcoin Core daemon on a specific network
$ bitcoind -chain=[main|test|signet|regtest]
copy


Start the Bitcoin Core daemon using specific config file and data directory
$ bitcoind -conf=[path/to/bitcoin.conf] -datadir=[path/to/directory]
copy

Copied to clipboard