Parity

需要有關備份我的整個奇偶校驗目錄的建議

  • December 16, 2017

我正在開發一個區塊鏈瀏覽器,我想在 Ubuntu 上備份我的奇偶校驗目錄。我已經在 Parity wiki 上指出了備份的說明,但它只提供備份我的密鑰的備份說明。我希望備份我的整個“.local/share/io.parity.ethereum”目錄。我正在考慮只使用 rsync 來備份該目錄(在使用命令停止奇偶校驗後:“sudo systemctl stop io.parity.ethereum”)。有沒有人這樣做以知道這是否可以很好地複制整個奇偶校驗目錄?任何投入將不勝感激!提前致謝。

你是對的。

rsync -avzh $HOME/.local/share/io.parity.ethereum/ /path/to/my/backup/parity

如果您只想導出密鑰,它們位於:

$HOME/.local/share/io.parity.ethereum/keys

如果您只想要區塊鍊或狀態,您可以通過以下方式直接導出:

parity export blocks /path/to/chain
parity export state /path/to/state

希望澄清一切。

引用自:https://ethereum.stackexchange.com/questions/13374