Problems Sync resource vanished

i follow the tutorial: Setting up your node - Stake pool course

i use config from testnet preview
wget https://book.world.dev.cardano.org/environments/preview/config.json
wget https://book.world.dev.cardano.org/environments/preview/topology.json
wget https://book.world.dev.cardano.org/environments/preview/byron-genesis.json
wget https://book.world.dev.cardano.org/environments/preview/shelley-genesis.json
wget https://book.world.dev.cardano.org/environments/preview/alonzo-genesis.json

To start the node, run the following command
cardano-node run
–topology topology.json
–database-path db
–socket-path db/node.socket
–host-addr 0.0.0.0
–port 3001
–config config.json

i have mistake
[ada101:cardano.node.InboundGovernor:Info:67] [2022-11-09 01:14:52.26 UTC] TrMuxErrored (ConnectionId {localAddress = 192.168.0.61:1337, remoteAddress = 3.72.231.105:30002}) (MuxError (MuxIOException Network.Socket.recvBuf: resource vanished (Connection reset by peer)) “(recv errored)”)
[ada101:cardano.node.PeerSelection:Info:61] [2022-11-09 01:14:52.26 UTC] TraceDemoteAsynchronous (fromList [(3.72.231.105:30002,PeerCold)])
[ada101:cardano.node.PeerSelection:Info:61] [2022-11-09 01:14:52.26 UTC] PeerSelectionCounters {coldPeers = 1, warmPeers = 0, hotPeers = 0}
[ada101:cardano.node.ConnectionManager:Info:111] [2022-11-09 01:14:52.37 UTC] TrConnectionHandler (ConnectionId {localAddress = 192.168.0.61:1337, remoteAddress = 3.72.231.105:30002}) (TrError OutboundError (MuxError (MuxIOException Network.Socket.recvBuf: resource vanished (Connection reset by peer)) “(recv errored)”) ShutdownPeer)

cardano-node 1.33.1 - linux-aarch64 - ghc-8.10
cardano-cli 1.33.1 - linux-aarch64 - ghc-8.10

cardano-cli query tip --testnet-magic 2
{
“era”: “Alonzo”,
“syncProgress”: “19.60”,
“hash”: “a95ed2ffa659e027d9b9e56a1a322a9b4c5e82b487f8d7db386192dba2dacb8e”,
“epoch”: 2,
“slot”: 254596,
“block”: 12786
}

You need to use cardano-node 1.35.4 (which was just released). The version you are using is not working anymore since September, when the last hard fork happened.

1 Like

Thank you georgem1976
I have successfully tested the 1.35.4

cardano-cli query tip --testnet-magic 2
{
“block”: 67869,
“epoch”: 17,
“era”: “Babbage”,
“hash”: “93ec78f32f77961b27dbde582b1c1050c8a86a1f325aed29ea78c4498fcc2add”,
“slot”: 1471614,
“syncProgress”: “100.00”
}

1 Like