Journalctl --unit=cardano-node --follow (startBlockProducingNode.sh: line 11: cardano-node: command not found_

Wondering why this command doesn’t work. My line 11 in “startBlockProducingNode.sh” is:

cardano-node run --topology {TOPOLOGY} --database-path {DB_PATH} --socket-path {SOCKET_PATH} --host-addr {HOSTADDR} –

which guide are you following? i guess you need to change the values in {} accordingly to you values.
or export them as shell variables.

echo export HOSTADDR=“0.0.0.0”

use them with ${HOSTADDR} in your script.

I figured out the problem here was the solution: