Hi,
I am testing the 1.29 image.
My producer starts as a relay.
I use the same docker run command as before but the kes part seems to be ignored:
–shelley-kes-key
–shelley-vrf-key
–shelley-operational-certificate
In the logs these 3 shelley options are missing and my node is running as a relay:
CARDANO_BLOCK_PRODUCER=false
docker run
docker run -d --restart always --name cardano-producer -v /home/cardano/cardano-config:/configuration -v /cardano/data:/data \
inputoutput/cardano-node:1.29.0 run \
--shelley-kes-key configuration/hot-keys/kes.skey \
--shelley-vrf-key configuration/hot-keys/vrf.skey \
--shelley-operational-certificate configuration/hot-keys/node.cert \
--config /configuration/mainnet-config.json \
--topology /configuration/mainnet-topology.json \
--database-path /data/db \
--socket-path /data/ipc \
--port 6000 \
--host-addr 0.0.0.0
Logs:
Running the cardano node ...
CARDANO_BIND_ADDR=0.0.0.0
CARDANO_BLOCK_PRODUCER=false
CARDANO_CONFIG=/configuration/mainnet-config.json
CARDANO_DATABASE_PATH=/data/db
CARDANO_LOG_DIR=/opt/cardano/logs
CARDANO_PORT=6000
CARDANO_SOCKET_PATH=/data/ipc
CARDANO_TOPOLOGY=/configuration/mainnet-topology.json
cardano-node run --config /configuration/mainnet-config.json --topology /configuration/mainnet-topology.json --database-path /data/db --socket-path /data/ipc --host-addr 0.0.0.0 --port 6000
Listening on http://127.0.0.1:12798
Thanks for your help