Hello,
I spent last few days setting up my pool.
It seems to be almost done, but on my relay node, i have 0 in connections.
Ive noticed, that my relay is not in this list: https://explorer.mainnet.cardano.org/relays/topology.json
fw is disabled in linux. message from script is ok, i even checked the errors by pool id and metadata hash according to your post mentioned above. i checked my ports 6000/6001 at https://www.portcheckers.com/
USERNAME=xxx
CNODE_PORT=6001 # must match your relay node port as set in the startup command
CNODE_HOSTNAME=“CHANGE ME” # optional. must resolve to the IP you are requesting from
CNODE_BIN=“/usr/local/bin”
CNODE_HOME=/home/xxx/cardano-my-node
CNODE_LOG_DIR=“${CNODE_HOME}/logs”
GENESIS_JSON=“${CNODE_HOME}/mainnet-shelley-genesis.json”
NETWORKID=$(jq -r .networkId $GENESIS_JSON)
CNODE_VALENCY=1 # optional for multi-IP hostnames
NWMAGIC=$(jq -r .networkMagic < $GENESIS_JSON)
[[ “${NETWORKID}” = “Mainnet” ]] && HASH_IDENTIFIER=“–mainnet” || HASH_IDENTIFIER=“–testnet-magic ${NWMAGIC}”
[[ “${NWMAGIC}” = “764824073” ]] && NETWORK_IDENTIFIER=“–mainnet” || NETWORK_IDENTIFIER=“–testnet-magic ${NWMAGIC}”