How to install and Launch Bitcoin Cash daemon on machine?
And what should be the correct BitcoinCash configuration file format for BCH Mainnet, I want to run BCH node with USERNAME and PASSWORD
See the docs:
doc/README.md
doc/init.md
Download the appropriate binary from here: https://download.bitcoinabc.org/
//unzip tar file
tar xzvf bitcoin-abc-0.17.2-x86_64-linux-gnu.tar.gz
//replace bitcoin word with bitcoinCash
rename 's/bitcoin/bitcoinCash/' *
sudo install -m 0755 -o root -g root -t /usr/local/bin *
bitcoinCashd -version
bitcoinCash-cli getblockchaininfo
bitcoinCashd -daemon
Most helpful comment
Download the appropriate binary from here: https://download.bitcoinabc.org/
//unzip tar file
tar xzvf bitcoin-abc-0.17.2-x86_64-linux-gnu.tar.gz//replace bitcoin word with bitcoinCash
rename 's/bitcoin/bitcoinCash/' *sudo install -m 0755 -o root -g root -t /usr/local/bin *