mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 15:02:09 +02:00

* bitcoind: add page * Update pages/common/bitcoind.md Co-authored-by: spageektti <git@spageektti.cc> * Update pages/common/bitcoind.md Co-authored-by: spageektti <git@spageektti.cc> * Update pages/common/bitcoind.md Co-authored-by: spageektti <git@spageektti.cc> --------- Co-authored-by: spageektti <git@spageektti.cc>
21 lines
567 B
Markdown
21 lines
567 B
Markdown
# 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}}`
|
|
|
|
- Start the Bitcoin Core daemon using specific config file and data directory:
|
|
|
|
`bitcoind -conf={{path/to/bitcoin.conf}} -datadir={{path/to/directory}}`
|