Bitcoin
This section explains specifics of various applications packaged in the repository.
bitcoind and bitcoin-cli
About
bitcoind is the full node implementation, the heart of Bitcoin ecosystem. bitcoin-cli package/command can be used to control bitcoind from command line.
Usage
Important: unless you (directly or indirectly) install bitcoin-fullchain-$network or bitcoin-txindex-$network the node will be pruned by default. Some packages (electrs, lnd, ...) depend on fullchain, so they won't break. To avoid waiting for reindex, do NOT install the packages one-by-one - install all desired packages using a single apt install command.
Changing Bitcoind data directory and other settings
Default data directory including chain data is in /var/lib/like any other application. You can choose own datadir and other configuration like pruning size, dbcache, ports, etc, either before installation or change it afterwards.
Choosing config before the installation
Before installing, environment variable which defines debconf priority has to be set. Using sudo, installation prompting configuration can be easily done with one command:
sudo DEBIAN_PRIORITY=medium apt install bitcoin-mainnetThis will prompt you to choose various configuration options including Bitcoin datadir. You can leave default settings if you are not sure about other options.
Changing config when Bitcoind is installed
Configuration can be changed using dpkg-reconfigure as any other software. But in case of changing Bitcoin directory, you might also want to move existing data to the new directory.
Example for bitcoin-mainnetpackage:
# Bitcoind is automatically running after the installation. First, stop bitcoind service:
sudo systemctl stop bitcoin-mainnet
# Move relevant files:
sudo mv /var/lib/bitcoin-mainnet /new-volume/bitcoin-mainnet
# Now you can choose the new directory:
sudo dpkg-reconfigure bitcoin-mainnet
# Service should auto-start, check if everything runs correctly:
systemctl status bitcoin-mainnetUser interface
Install btc-rpc-explorer package for a nice graphical interface.
bitcoin-cli
bitcoin-cliYou need
sudoto runbitcoin-cli, group support not implemented yet, PRs welcomed.bitcoin-cliis not actual binary, it forwards your commands to the real binary in order to work out of the boxIf
bitcoin-clidetects that you don't have the permission for full access tobitcoindit will use public:public if you havebitcoin-timechain-$networkinstalled.bitcoin-txis not packaged yet because I'm not sure into which package it should goUse
bitcoin-cli -chain=regtestfor regtest (assumingbitcoin-regtestis installed).
Last updated
Was this helpful?