Can anyone help me with this error?

after running the cardano node of the error on: epoch 73
Captura de tela de 2021-03-12 17-34-59

I used the run command with address 127.0.0.1
(for testing only)
does this have to do with the error?

cardano-node run
–topology testnet-topology.json
–database-path db
–socket-path db/node.socket
–host-addr 127.0.0.1
–port 3001
–config testnet-config.json

Try to start it with host address 0.0.0.0

And

Make sure you add these 2 lines to the .bashrc and source it export
nano .bashrc
LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH" source .bashrc

also, be sure to source .bashrc once this file has been saved

Cheers,

Thanks for the answer

these two lines do what ??
and it is to put at the end of the first line the word: “export”
and the second: “source .bashrc”

Wrong copy-paste

Add the following to your .bashrc file and source it:


export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"

export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"

Save and type source .bashrc

Thanks for the answer