2024-07-25 02:39:06 +10:00
|
|
|
# bitcoind
|
|
|
|
|
|
|
|
> Bitcoin Core daemon.
|
|
|
|
> Uses the configuration defined in `bitcoin.conf`.
|
|
|
|
> More information: <https://manned.org/bitcoind>.
|
|
|
|
|
|
|
|
- Start the Bitcoin Core daemon (in the foreground):
|
|
|
|
|
|
|
|
`bitcoind`
|
|
|
|
|
|
|
|
- Start the Bitcoin Core daemon in the background (use `bitcoin-cli stop` to stop):
|
|
|
|
|
|
|
|
`bitcoind -daemon`
|
|
|
|
|
|
|
|
- Start the Bitcoin Core daemon on a specific network:
|
|
|
|
|
|
|
|
`bitcoind -chain={{main|test|signet|regtest}}`
|
|
|
|
|
2025-06-24 12:24:11 +03:00
|
|
|
- Start the Bitcoin Core daemon using specific configuration file and data directory:
|
2024-07-25 02:39:06 +10:00
|
|
|
|
|
|
|
`bitcoind -conf={{path/to/bitcoin.conf}} -datadir={{path/to/directory}}`
|