ライブプライベートノードにピアを追加する
2 回答
- 投票
-
- 2019-07-03
通常、
tezos-admin-client
バイナリを使用して新しいピアを追加できます../tezos-admin-client connect address <node ip>:9732
ただし、本日(2019年7月3日)現在のバイナリの最新バージョンでは、上記はプライベートモードのノードでは機能しません.
別のアプローチは、
/network/points/{point}/trust
rpcルートを呼び出すことです.例:> curl http://localhost:8732/network/points/<node ip>:9732/trust {} // logs in the node Jun 12 01:48:54 - validator.peer_6: Worker started for NetXgtSLGNJvN:idsMbqZqhyVU
Generally we can use the
tezos-admin-client
binary to add new peers:./tezos-admin-client connect address <node ip>:9732
But the latest version of the binaries as of today (7/3/2019), the above does not work for nodes in private mode.
Another approach is by calling the
/network/points/{point}/trust
rpc route, example:> curl http://localhost:8732/network/points/<node ip>:9732/trust {} // logs in the node Jun 12 01:48:54 - validator.peer_6: Worker started for NetXgtSLGNJvN:idsMbqZqhyVU
-
上記の問題でgitlabの問題が発生しました:https://gitlab.com/tezos/tezos/issues/547An gitlab issue has created on the issue mentioned above: https://gitlab.com/tezos/tezos/issues/547
- 0
- 2019-07-03
- Frank
-
- 2020-01-23
最初にノードを信頼し、次にノードに接続します:
tezos-admin-client -A localhost trust address <node ip>:9732 tezos-admin-client -A localhost connect address <node ip>:9732
First trust the node, then connect to it:
tezos-admin-client -A localhost trust address <node ip>:9732 tezos-admin-client -A localhost connect address <node ip>:9732
プライベートモードで実行中のtezos-nodeに新しいピアを追加する方法はありますか?