Rinkeby

如何讓我的節點在 Rinkeby 測試網統計數據中列出?

  • February 28, 2018

嘿,我正在為 rinkeby 測試網執行一個完整節點,但不幸的是,我在https://www.rinkeby.io/#stats>和<https://ethernodes.org/network/4/nodes上都找不到它,我我很好奇如何有資格在這些頁面上列出?

看看--ethstatsgeth中的選項。 https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options

此外,關於“完整節點”的這一部分應該會有所幫助,尤其是設置該--ethstats部分以及連接到正確的引導節點。 https://www.rinkeby.io/#geth

如果您還沒有同步,請從上面的連結中獲取 rinkeby.json 文件,然後執行:

geth --datadir=$HOME/.rinkeby init rinkeby.json

然後在一些--syncmode例如--syncmode=full或執行 geth--syncmode=light並用您選擇的節點名稱替換 PUTYOUROWNNAMEHERE 。

geth --networkid=4 --datadir=$HOME/.rinkeby --cache=1024 --syncmode=full --ethstats='PUTYOUROWNNAMEHERE:Respect my authoritah!@stats.rinkeby.io' --bootnodes=enode://a24ac7c5484ef4ed0c5eb2d36620ba4e4aa13b8c84684e1b4aab0cebea2ae45cb4d375b77eab56516d34bfbd3c1a833fc51296ff084b770b94fb9028c4d25ccf@52.169.42.101:30303

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