tezos-ノード同期カルタヘネットチェーンが遅すぎる
-
-
「mainnet」と「carthagenet」の違いを必ず理解してください.前者の「メインネット」は、現在Tezosネットワーク全体で実行されているものです.「carthagenet」は、メインネットから完全に分離されたテスト/開発ネットワークです.正しいソフトウェアを実行し、正しいネットワークに接続していますか?Make sure you understand the difference between "mainnet" and "carthagenet". The former, "mainnet", is currently what is running across the entire Tezos network. "carthagenet" is a TESTING/DEVELOPMENT network which is completely isolated from mainnet. Are you running the correct software and connecting to the correct network?
- 0
- 2020-04-02
- utdrmac
-
1 回答
- 投票
-
- 2020-04-02
Carthagenetはさまざまなブートストラップピアを使用します(ソース: https://gitlab.com/tezos/tezos/-/blob/master/src/bin_node/node_config_file.ml#L121 )
構成ファイルからブートストラップピアを省略することもでき、ハードコードされたデフォルトのピアが使用されます.
スナップショットはこちらから入手できます:
Carthagenet uses different bootstrap peers ( source: https://gitlab.com/tezos/tezos/-/blob/master/src/bin_node/node_config_file.ml#L121 )
you can also just omit the bootstrap peers from the config file and it will use the hardcoded default ones.
Snapshots are available here:
-
私の設定は正しいと確信しています.スナップショットをインポートした後、ノードを再起動しても、他のピアに接続できません.そして、ブートストラップノードの設定をクリアしましたが、この問題は解決しません.I am sure that my config is correct. After imported snapshot, I restart my node, and I still cannot connect to other peers. And then I clear bootstrap node config, it doesn't solve this problem.
- 0
- 2020-04-02
- saiwaixiaowangzi
-
設定ファイルなしで起動すると同期が始まりますか?そうでない場合は、ネットワークの問題である可能性が高いためですdoes it start syncing if you start it without any config file at all? because if not that is most likely a networking issue
- 0
- 2020-04-02
- tuliptrader
-
はい、ノードはメインネットブロックを同期すると思いますyes, I think the node synchronize mainnet block
- 0
- 2020-04-02
- saiwaixiaowangzi
-
ああ!私はあなたの問題を理解していると思います...マスターブランチを使用している場合は、 `--network carthagenet`を使用してノードを実行してみてください.以前はネットワークごとに複数のブランチがありましたが、現在はすべてが1つのブランチ/ノードにあり、ユーザーは実行されていません.メインネットでは、このフラグでネットワークを指定する必要があります.それがうまくいくことを願っていますah! I think i understand your problem...If you are on master branch, try running the node with `--network carthagenet`, we used to have multiple branches for each network, now everything is in one branch/node and users not running on mainnet should specify the network with this flag. hope it works with that
- 0
- 2020-04-02
- tuliptrader
-
また、私はあなたのユースケースについてよくわかりません、そしてこのようなtezosを実行することは完全に問題ありません、しかしhttps://gitlab.com/nomadic-labs/teztoolを見てください、多分それはあなたにとってより簡単です.also, i am not sure about your use case and running tezos like this is perfectly fine, however do look at https://gitlab.com/nomadic-labs/teztool, maybe that is easier for you.
- 0
- 2020-04-02
- tuliptrader
-
Dockerを使用しない方法はありますか?are there some way that doesn't use docker?
- 0
- 2020-04-02
- saiwaixiaowangzi
-
はい、ソースからコンパイルできますが、それはこの質問の対処を超えています.yes, you can compile it from source but thats beyond the cope of this question.
- 1
- 2020-04-02
- tuliptrader
tezos-nodeを使用してcarthagenetチェーンを同期しています.私の設定ファイルは
です最新のログは
p2pネットワークへの接続が無効になっているようです.
そして、 https://github.com/Phlogi/tezos-snapshotsのように、carthagenetsnpshotはどこにありますか?