嘿,我正在为rinkeby运行一个完整的节点,但不幸的是,我既没有在https://www.rinkeby.io/#stats上找到它,也没有在https://ethernodes.org/network/4/nodes上找到它,我想知道如何才能有资格在这些页面上列出它?
发布于 2018-02-28 13:25:20
看看geth中的--ethstats选项。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中运行geth,例如--syncmode=full或--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
复制相似问题