We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
re: #22
Commands below require pigz to be installed. If its not then remove --use-compress-program=pigz from the tar commands and add z argument.
pigz
--use-compress-program=pigz
z
BU node must be stopped
sudo tar --exclude=debug.log --exclude=mempool.dat --exclude=wallet.dat --exclude=.lock --exclude=peers.dat --exclude=orphanpool.dat --use-compress-program=pigz -cvf /tmp/bu.tar.gz -C data/bitcoind testnet3
Put the files in the directory before creating the container
mkdir -p data/bitcoind/testnet3 tar --use-compress-program=pigz -xvf /tmp/bu.tar.gz -C data/bitcoind/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
re: #22
Commands below require
pigz
to be installed. If its not then remove--use-compress-program=pigz
from the tar commands and addz
argument.Generate dump
BU node must be stopped
Restore dump
Put the files in the directory before creating the container
The text was updated successfully, but these errors were encountered: