【发布时间】:2020-08-05 05:11:04
【问题描述】:
我想运行一个 Rinkeby 完整节点。这是我的 geth 启动脚本:
geth --rinkeby \
--cache=2048 \
--http --http.port=8545 --http.addr=127.0.0.1 --http.api=eth,web3,net,personal --http.corsdomain "*" \
--syncmode=fast
geth 启动,但显然它无法连接到任何对等点。我得到以下调试输出:
INFO [08-05|07:03:02.696] Looking for peers peercount=0 tried=137 static=0
INFO [08-05|07:03:12.832] Looking for peers peercount=0 tried=180 static=0
INFO [08-05|07:03:23.506] Looking for peers peercount=0 tried=81 static=0
INFO [08-05|07:03:35.003] Looking for peers peercount=0 tried=198 static=0
INFO [08-05|07:03:45.042] Looking for peers peercount=0 tried=105 static=0
INFO [08-05|07:03:56.216] Looking for peers peercount=0 tried=96 static=0
INFO [08-05|07:04:06.978] Looking for peers peercount=0 tried=118 static=0
INFO [08-05|07:04:17.244] Looking for peers peercount=0 tried=110 static=0
INFO [08-05|07:04:27.273] Looking for peers peercount=0 tried=189 static=0
INFO [08-05|07:04:39.046] Looking for peers peercount=0 tried=81 static=0
它已经像这样运行了超过 12 个小时。我也尝试停止防火墙,但这并没有改变任何东西。
这里是geth版本的输出:
Geth
Version: 1.9.19-unstable
Git Commit: 8e7bee9b56763e94c06e597bf968838e7ea2d03b
Git Commit Date: 20200727
Architecture: amd64
Protocol Versions: [65 64 63]
Go Version: go1.13.14
Operating System: linux
GOPATH=
GOROOT=/usr/lib64/go/1.13
我能做什么,geth 找到其他同伴?
感谢您的帮助。
【问题讨论】:
标签: geth