From eba2c03de3dcea6772357ef10a77b132af80d41d Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Thu, 25 Jul 2024 02:39:06 +1000 Subject: [PATCH] bitcoind: add page (#13300) * bitcoind: add page * Update pages/common/bitcoind.md Co-authored-by: spageektti * Update pages/common/bitcoind.md Co-authored-by: spageektti * Update pages/common/bitcoind.md Co-authored-by: spageektti --------- Co-authored-by: spageektti --- pages/common/bitcoind.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/bitcoind.md diff --git a/pages/common/bitcoind.md b/pages/common/bitcoind.md new file mode 100644 index 0000000000..68df9514fd --- /dev/null +++ b/pages/common/bitcoind.md @@ -0,0 +1,21 @@ +# bitcoind + +> Bitcoin Core daemon. +> Uses the configuration defined in `bitcoin.conf`. +> More information: . + +- 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}}`