geth --rinkeby не может найти пиров - PullRequest
0 голосов
/ 05 августа 2020

Я хочу запустить полный узел 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 находит других пиров?

Спасибо за помощь.

...