gaia: Cannot initialize full node using Gaia v4.0.2, hangs at ABCI Replay Blocks
Summary of Bug
After execute the command: gaiad start
The process hangs with the following output:
10:21AM INF starting ABCI with Tendermint
10:21AM INF Starting multiAppConn service impl={"Logger":{}} module=proxy
10:21AM INF Starting localClient service connection=query impl="marshaling error: json: unsupported type: abcicli.Callback" module=abci-client
10:21AM INF Starting localClient service connection=snapshot impl="marshaling error: json: unsupported type: abcicli.Callback" module=abci-client
10:21AM INF Starting localClient service connection=mempool impl="marshaling error: json: unsupported type: abcicli.Callback" module=abci-client
10:21AM INF Starting localClient service connection=consensus impl="marshaling error: json: unsupported type: abcicli.Callback" module=abci-client
10:21AM INF Starting EventBus service impl={"Logger":{}} module=events
10:21AM INF Starting PubSub service impl={"Logger":{}} module=pubsub
10:21AM INF Starting IndexerService service impl={"Logger":{}} module=txindex
10:21AM INF ABCI Handshake App Info hash= height=0 module=consensus protocol-version=0 software-version=
10:21AM INF ABCI Replay Blocks appHeight=0 module=consensus stateHeight=0 storeHeight=0
Version
gaiad version --long
name: gaia
server_name: gaiad
version: 4.0.2
commit: 6d46572f3273423ad9562cf249a86ecc8206e207
build_tags: netgo ledger,
go: go version go1.15.8 linux/amd64
Steps to Reproduce
Get the latest genesis.json from https://raw.githubusercontent.com/cosmos/mainnet/master/genesis.cosmoshub-4.json.gz
Modified the seeds in config.toml with:
seeds = "89e4b72625c0a13d6f62e3cd9d40bfc444cbfa77@34.65.6.52:26656"
I found the seed nodes on https://github.com/cosmos/mainnet
gaiad init [my_moniker]
gaiad start
For Admin Use
- Not duplicate issue
- Appropriate labels applied
- Appropriate contributors tagged
- Contributor assigned/self-assigned
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Reactions: 4
- Comments: 18 (5 by maintainers)
Seems it’s working, you just have to wait.
Put this into your
.gaia/config/config.tomlin the relevant section:Then start gaia with:
and wait for around 1 hour at least
it takes ~5 hours without
--x-crisis-skip-assert-invariants, ~1hour with--x-crisis-skip-assert-invariantsto start , don’t forget adding p2p.persistent_peers/seed before starting , because you would need to start over if you forgot that …