ノードを構築するには、ブロックとコンテキストデータを最初から同期する必要がありますか?
1 回答
- 投票
別のノードのtezos-node
データから開始し、そこから同期を終了することができます.これを行うには、新しいtezos-node
を簡単に実行して、~/.tezos-node
とその中の通常のファイルを作成します.次に、tezos-node
を停止し、次の手順を実行します.
cd ~/.tezos-node
rm -r context store
curl http://quicksync.tzdutch.com/latest.tar.lz4 | lz4 -d | tar xf -
ダウンロードと展開の手順には数時間かかる場合があります.次に、tezos-node
を再起動し、データの同期を終了させます.
コンテキストのソースについては、 https://www.tzdutch.com/quicksync/を参照してください.データを保存します.
It's possible to start with tezos-node
data from another node and finish the sync from there. I do this by running the new tezos-node
briefly to have it create ~/.tezos-node
and the usual files in that. Then I stop tezos-node
and do the following:
cd ~/.tezos-node
rm -r context store
curl http://quicksync.tzdutch.com/latest.tar.lz4 | lz4 -d | tar xf -
The download and expand step can take several hours. Then I restart tezos-node
and let it finish syncing the data.
See https://www.tzdutch.com/quicksync/ about the source of the context and store data.
ノードを構築するときに、ブロックデータを最初から同期する必要がありますか、それともある種のスナップショットを読み込んでそこから同期を終了できますか?