I recently started setting up my cardano pool and have had some success. My only issue is that I cannot run ./gLiveView on my production server. It tries to connect three times then it errors out “COULD NOT CONNECT TO A RUNNING INSTANCE, 3 FAILED ATTEMPTS IN A ROW!”. I think this has something to do with my env file but I’m not entierly sure. Any help would be appreciated.
here is my latest error
ERROR: You specified 12788 as your EKG port, but it looks like the cardano-node (PID: 8088 ) is not listening on this port. Please update the config or kill the conflicting process first.
ERROR: gLiveView failed to load common env file
Please verify set values in ‘User Variables’ section in env file or log an issue on GitHub
this is my env file
#!/usr/bin/env bash
shellcheck disable=SC2034,SC2086,SC2230,SC2009,SC2206,SC2062,SC2059,SC2229,SC2154,SC2162,SC2120
######################################
User Variables - Change as desired
Leave as is if unsure
######################################
#CNODEBIN="${HOME}/.cabal/bin/cardano-node" # Override automatic detection of cardano-node executable
#CCLI="${HOME}/.cabal/bin/cardano-cli" # Override automatic detection of cardano-cli executable
#CNCLI="${HOME}/.cargo/bin/cncli" # Override automatic detection of executable ( >
#CNODE_HOME="/opt/cardano/cnode" # Override default CNODE_HOME path (defaults to /opt/cardano/cnode)
CNODE_PORT=6000 # Set node port
CONFIG="${NODE_HOME}/mainnet-config.json" # Override automatic detection of node config path
SOCKET="${NODE_HOME}/db/socket" # Override automatic detection of path to socket
#TOPOLOGY="${CNODE_HOME}/files/topology.json" # Override default topology.json path
#LOG_DIR="${CNODE_HOME}/logs" # Folder where your logs will be sent to (must pre-exist)
#DB_DIR="${CNODE_HOME}/db" # Folder to store the cardano-node blockchain db
#UPDATE_CHECK=“Y” # Check for updates to scripts, it will still be prompted before proceeding (Y|N).
#TMP_DIR="/tmp/cnode"
USE_EKG=“Y” # Use EKG metrics from the node instead of Prometheus. Prometheus metrics yield s>
#EKG_HOST=127.0.0.1 # Set node EKG host IP
#EKG_PORT=12788 # Override automatic detection of node EKG port
#PROM_HOST=127.0.0.1 # Set node Prometheus host IP
#PROM_PORT=12798 # Override automatic detection of node Prometheus port
#EKG_TIMEOUT=3 # Maximum time in seconds that you allow EKG request to take before aborting (nod>
#CURL_TIMEOUT=10 # Maximum time in seconds that you allow curl file download to take before aborti>
#BLOCKLOG_DIR="${CNODE_HOME}/guild-db/blocklog" # Override default directory used to store block data for core node
#BLOCKLOG_TZ=“UTC” # TimeZone to use when displaying blocklog - >
#SHELLEY_TRANS_EPOCH=208 # Override automatic detection of shelley epoch start, e.g 208 for mainnet
#TG_BOT_TOKEN="" # Uncomment and set to enable telegramSend function. To create your own BOT-token>
#TG_CHAT_ID="" # Sendalerts - Guild Operators
#TIMEOUT_LEDGER_STATE=300 # Timeout in seconds for querying and dumping ledger-state
#IP_VERSION=4 # The IP version to use for push and fetch, valid options: 4 | 6 | mix (Default: >
#PGREST_API=“http://127.0.0.1:8050” # Uncomment and set to enable PostgREST API queries against DB-Sync
#DBSYNC_QUERY_FOLDER="${CNODE_HOME}/files/dbsync/queries" # [advanced feature] Folder containing DB-Sync chain analysis queries
#WALLET_FOLDER="${CNODE_HOME}/priv/wallet" # Root folder for Wallets
#POOL_FOLDER="${CNODE_HOME}/priv/pool" # Root folder for Pools
# Each wallet and pool has a friendly name and subfolder containing all related k>
#POOL_NAME=“RAD ADA” # Set the pool’s name to run node as a core node (the name, NOT the ticker>
#WALLET_PAY_VK_FILENAME=“payment.vkey” # Standardized names for all wallet related files
#WALLET_PAY_SK_FILENAME=“payment.skey”
#WALLET_HW_PAY_SK_FILENAME=“payment.hwsfile”
#WALLET_PAY_ADDR_FILENAME=“payment.addr”
#WALLET_BASE_ADDR_FILENAME=“base.addr”
#WALLET_STAKE_VK_FILENAME=“stake.vkey”
#WALLET_STAKE_SK_FILENAME=“stake.skey”
#WALLET_HW_STAKE_SK_FILENAME=“stake.hwsfile”
#WALLET_STAKE_ADDR_FILENAME=“reward.addr”
#WALLET_STAKE_CERT_FILENAME=“stake.cert”
#WALLET_STAKE_DEREG_FILENAME=“stake.dereg”
#WALLET_DELEGCERT_FILENAME=“delegation.cert”
#POOL_ID_FILENAME=“pool.id” # Standardized names for all pool related files
#POOL_HOTKEY_VK_FILENAME=“hot.vkey”
#POOL_HOTKEY_SK_FILENAME=“hot.skey”
#POOL_COLDKEY_VK_FILENAME=“cold.vkey”
Ok now i can connect but it runs as a Relay node instead of core. Any ideas?
So, are u using cntools or coincashew guide?
CoinCashew guide. I decided to rebuild my Production node, spent too much time on it so far and I have a compressed db available.
Cn u share the starting script for Producer?
Currently the Node is being rebuilt. When I get to that part, if I still have issues Ill post. I edited the startup script but it ran as a relay each time. I will double check my start Producer script before I run.
Let me know if u still have issues after u will finish to rebuild it
Still starting as a relay. here is my startBlockProducingNode.sh file.
#!/bin/bash
DIRECTORY=/home/redbull/cardano-my-node
PORT=6000
HOSTADDR=0.0.0.0
TOPOLOGY=${DIRECTORY}/mainnet-topology.json
DB_PATH=${DIRECTORY}/db
SOCKET_PATH=${DIRECTORY}/db/socket
CONFIG=${DIRECTORY}/mainnet-config.json
/usr/local/bin/cardano-node run +RTS -N -A16m -qg -qb -RTS --topology ${TOPOLOGY} --database-path ${DB_PATH} --socket-path ${SOCKET_PATH} --host-addr ${HOSTADDR} --port ${PORT} →
See? The script is for relay, for Producer u will need to update with the KES files (pool.cert, etc)… there is a step on coincashew guide
Ok, creating new key pairs and expanding DB. Ill be in contact if I run into more issues. Thanks for the help.
If u have the old KES u don’t need to create another
ok now when I try to run gLiveView I get this erroe regarding my env configuration. ERROR: You specified 12788 as your EKG port, but it looks like the cardano-node (PID: 10776 ) is not listening on this port. Please update the config or kill the conflicting process first.
ERROR: gLiveView failed to load common env file
Please verify set values in ‘User Variables’ section in env file or log an issue on GitHub
Here is my env file
#CNODEBIN="${HOME}/.cabal/bin/cardano-node"
#CCLI="${HOME}/.cabal/bin/cardano-cli" # Override automatic detection of cardano-cli executable
#CNCLI="${HOME}/.cargo/bin/cncli" # Override automatic detection of executable ()
#CNODE_HOME="/opt/cardano/cnode" # Override default CNODE_HOME path (defaults to /opt/cardano/cnode)
CNODE_PORT=6000 # Set node port
CONFIG="${NODE_HOME}/mainnet-config.json" # Override automatic detection of node config path
SOCKET="${NODE_HOME}/db/socket" # Override automatic detection of path to socket
#TOPOLOGY="${CNODE_HOME}/files/topology.json" # Override default topology.json path
#LOG_DIR="${CNODE_HOME}/logs" # Folder where your logs will be sent to (must pre-exist)
#DB_DIR="${CNODE_HOME}/db" # Folder to store the cardano-node blockchain db
#UPDATE_CHECK=“Y” # Check for updates to scripts, it will still be prompted before proceeding (Y|N).
#TMP_DIR="/tmp/cnode" # Folder to hold temporary files in the various scripts, each script might create additional subfolders
#USE_EKG=“Y” # Use EKG metrics from the node instead of Prometheus. Prometheus metrics yield slightly better performance but can be unr>
#EKG_HOST=127.0.0.1 # Set node EKG host IP
#EKG_PORT=12788 # Override automatic detection of node EKG port
#PROM_HOST=127.0.0.1 # Set node Prometheus host IP
#PROM_PORT=12798 # Override automatic detection of node Prometheus port
#EKG_TIMEOUT=3 # Maximum time in seconds that you allow EKG request to take before aborting (node metrics)
#CURL_TIMEOUT=10 # Maximum time in seconds that you allow curl file download to take before aborting (GitHub update process)
#BLOCKLOG_DIR="${CNODE_HOME}/guild-db/blocklog" # Override default directory used to store block data for core node
#BLOCKLOG_TZ=“UTC” # TimeZone to use when displaying blocklog -
#SHELLEY_TRANS_EPOCH=208 # Override automatic detection of shelley epoch start, e.g 208 for mainnet
#TG_BOT_TOKEN="" # Uncomment and set to enable telegramSend function. To create your own BOT-token and Chat-Id follow guide at:
#TG_CHAT_ID="" # Sendalerts - Guild Operators
#TIMEOUT_LEDGER_STATE=300 # Timeout in seconds for querying and dumping ledger-state
#IP_VERSION=4 # The IP version to use for push and fetch, valid options: 4 | 6 | mix (Default: 4)
#PGREST_API=“http://127.0.0.1:8050” # Uncomment and set to enable PostgREST API queries against DB-Sync
#DBSYNC_QUERY_FOLDER="${CNODE_HOME}/files/dbsync/queries" # [advanced feature] Folder containing DB-Sync chain analysis queries
#WALLET_FOLDER="${CNODE_HOME}/priv/wallet" # Root folder for Wallets
#POOL_FOLDER="${CNODE_HOME}/priv/pool" # Root folder for Pools
# Each wallet and pool has a friendly name and subfolder containing all related keys, certificates, …
#POOL_NAME="" # Set the pool’s name to run node as a core node (the name, NOT the ticker, ie folder name)
#WALLET_PAY_VK_FILENAME=“payment.vkey” # Standardized names for all wallet related files
#WALLET_PAY_SK_FILENAME=“payment.skey”
#WALLET_HW_PAY_SK_FILENAME=“payment.hwsfile”
#WALLET_PAY_ADDR_FILENAME=“payment.addr”
#WALLET_BASE_ADDR_FILENAME=“base.addr”
#WALLET_STAKE_VK_FILENAME=“stake.vkey”
#WALLET_STAKE_SK_FILENAME=“stake.skey”
#WALLET_HW_STAKE_SK_FILENAME=“stake.hwsfile”
#WALLET_STAKE_ADDR_FILENAME=“reward.addr”
#WALLET_STAKE_CERT_FILENAME=“stake.cert”
#WALLET_STAKE_DEREG_FILENAME=“stake.dereg”
#WALLET_DELEGCERT_FILENAME=“delegation.cert”
#POOL_ID_FILENAME=“pool.id” # Standardized names for all pool related files
#POOL_HOTKEY_VK_FILENAME=“hot.vkey”
#POOL_HOTKEY_SK_FILENAME=“hot.skey”
#POOL_COLDKEY_VK_FILENAME=“cold.vkey”
#POOL_COLDKEY_SK_FILENAME=“cold.skey”
#POOL_OPCERT_COUNTER_FILENAME=“cold.counter”
#POOL_OPCERT_FILENAME=“op.cert”
#POOL_VRF_VK_FILENAME=“vrf.vkey”
#POOL_VRF_SK_FILENAME=“vrf.skey”
#POOL_CONFIG_FILENAME=“pool.config”
sudo systemctl status cardano-node
journalctl -e -f -u cardano-node
and show me the output from the last restart
journalctl -e -f -u cardano-node
● cardano-node.service - Cardano node service
Loaded: loaded (/etc/systemd/system/cardano-node.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2021-10-22 17:09:21 UTC; 19min ago
Main PID: 10775 (startBlockProdu)
Tasks: 15 (limit: 9499)
Memory: 104.0M
CGroup: /system.slice/cardano-node.service
├─10775 /bin/bash /home/redbull/cardano-my-node/startBlockProducingNode.sh
└─10776 /usr/local/bin/cardano-node run +RTS -N -A16m -qg -qb -RTS --topology /home/redbull/cardano-my-node/mainnet-topology.json --database->
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.slotLengthAllegra:Notice:7] [2021-10-22 17:09:22.58 UTC] 1s
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.epochLengthAllegra:Notice:7] [2021-10-22 17:09:22.58 UTC] 432000
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAllegra:Notice:7] [2021-10-22 17:09:22.58 UTC] 129600
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-22 17:09:22.58 UTC] 1s
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-22 17:09:22.58 UTC] 432000
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-22 17:09:22.58 UTC] 129600
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-22 17:09:22.58 UTC] 1s
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-22 17:09:22.58 UTC] 432000
Oct 22 17:09:23 production cardano-node[10776]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-22 17:09:22.58 UTC] 129600
Oct 22 17:09:23 production cardano-node[10776]: Shutting down…
lines 1-20/20 (END)
Oct 22 17:37:06 production cardano-node[11374]: cardano-node: FatalError {fatalErrorMessage = “Cardano.Node.Run.handleSimpleNode.readTopologyFile: Is your topology file formatted correctly? The port and valency fields should be numerical. Error in $: Failed reading: satisfy. Expecting object value at ‘{’”}
Oct 22 17:37:12 production cardano-node[11392]: Listening on http:/127.0.0.1:12798
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.networkMagic:Notice:7] [2021-10-22 17:37:12.39 UTC] NetworkMagic 764824073
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.protocol:Notice:7] [2021-10-22 17:37:12.39 UTC] Byron; Shelley
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.version:Notice:7] [2021-10-22 17:37:12.39 UTC] 1.30.1
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.commit:Notice:7] [2021-10-22 17:37:12.39 UTC] 0fb43f4e3da8b225f4f86557aed90a183981a64f
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.nodeStartTime:Notice:7] [2021-10-22 17:37:12.39 UTC] 2021-10-22 17:37:12.39184567 UTC
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.systemStartTime:Notice:7] [2021-10-22 17:37:12.39 UTC] 2017-09-23 21:44:51 UTC
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotLengthByron:Notice:7] [2021-10-22 17:37:12.39 UTC] 20s
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.epochLengthByron:Notice:7] [2021-10-22 17:37:12.39 UTC] 21600
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotLengthShelley:Notice:7] [2021-10-22 17:37:12.39 UTC] 1s
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.epochLengthShelley:Notice:7] [2021-10-22 17:37:12.39 UTC] 432000
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotsPerKESPeriodShelley:Notice:7] [2021-10-22 17:37:12.39 UTC] 129600
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotLengthAllegra:Notice:7] [2021-10-22 17:37:12.39 UTC] 1s
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.epochLengthAllegra:Notice:7] [2021-10-22 17:37:12.39 UTC] 432000
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAllegra:Notice:7] [2021-10-22 17:37:12.39 UTC] 129600
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-22 17:37:12.39 UTC] 1s
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-22 17:37:12.39 UTC] 432000
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-22 17:37:12.39 UTC] 129600
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-22 17:37:12.39 UTC] 1s
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-22 17:37:12.39 UTC] 432000
Oct 22 17:37:12 production cardano-node[11392]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-22 17:37:12.39 UTC] 129600
Oct 22 17:37:12 production cardano-node[11392]: Shutting down…
Oct 22 17:37:12 production cardano-node[11392]: cardano-node: FatalError {fatalErrorMessage = “Cardano.Node.Run.handleSimpleNode.readTopologyFile: Is your topology file formatted correctly? The port and valency fields should be numerical. Error in $: Failed reading: satisfy. Expecting object value at ‘{’”}
Oct 22 17:37:19 production cardano-node[11407]: Listening on http:/127.0.0.1:12798
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.networkMagic:Notice:7] [2021-10-22 17:37:19.12 UTC] NetworkMagic 764824073
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.protocol:Notice:7] [2021-10-22 17:37:19.12 UTC] Byron; Shelley
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.version:Notice:7] [2021-10-22 17:37:19.12 UTC] 1.30.1
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.commit:Notice:7] [2021-10-22 17:37:19.12 UTC] 0fb43f4e3da8b225f4f86557aed90a183981a64f
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.nodeStartTime:Notice:7] [2021-10-22 17:37:19.12 UTC] 2021-10-22 17:37:19.123730241 UTC
Oct 22 17:37:19 production cardano-node[11407]: Shutting down…
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.systemStartTime:Notice:7] [2021-10-22 17:37:19.12 UTC] 2017-09-23 21:44:51 UTC
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotLengthByron:Notice:7] [2021-10-22 17:37:19.12 UTC] 20s
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.epochLengthByron:Notice:7] [2021-10-22 17:37:19.12 UTC] 21600
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotLengthShelley:Notice:7] [2021-10-22 17:37:19.12 UTC] 1s
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.epochLengthShelley:Notice:7] [2021-10-22 17:37:19.12 UTC] 432000
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotsPerKESPeriodShelley:Notice:7] [2021-10-22 17:37:19.12 UTC] 129600
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotLengthAllegra:Notice:7] [2021-10-22 17:37:19.12 UTC] 1s
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.epochLengthAllegra:Notice:7] [2021-10-22 17:37:19.12 UTC] 432000
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAllegra:Notice:7] [2021-10-22 17:37:19.12 UTC] 129600
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-22 17:37:19.12 UTC] 1s
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-22 17:37:19.12 UTC] 432000
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-22 17:37:19.12 UTC] 129600
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-22 17:37:19.12 UTC] 1s
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-22 17:37:19.12 UTC] 432000
Oct 22 17:37:19 production cardano-node[11407]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-22 17:37:19.12 UTC] 129600
Oct 22 17:37:19 production cardano-node[11407]: cardano-node: FatalError {fatalErrorMessage = “Cardano.Node.Run.handleSimpleNode.readTopologyFile: Is your topology file formatted correctly? The port and valency fields should be numerical. Error in $: Failed reading: satisfy. Expecting object value at ‘{’”}
Oct 22 17:37:25 production cardano-node[11421]: Listening on http:/127.0.0.1:12798
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.networkMagic:Notice:7] [2021-10-22 17:37:25.89 UTC] NetworkMagic 764824073
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.protocol:Notice:7] [2021-10-22 17:37:25.89 UTC] Byron; Shelley
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.version:Notice:7] [2021-10-22 17:37:25.89 UTC] 1.30.1
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.commit:Notice:7] [2021-10-22 17:37:25.89 UTC] 0fb43f4e3da8b225f4f86557aed90a183981a64f
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.nodeStartTime:Notice:7] [2021-10-22 17:37:25.89 UTC] 2021-10-22 17:37:25.894823735 UTC
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.systemStartTime:Notice:7] [2021-10-22 17:37:25.89 UTC] 2017-09-23 21:44:51 UTC
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotLengthByron:Notice:7] [2021-10-22 17:37:25.89 UTC] 20s
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.epochLengthByron:Notice:7] [2021-10-22 17:37:25.89 UTC] 21600
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotLengthShelley:Notice:7] [2021-10-22 17:37:25.89 UTC] 1s
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.epochLengthShelley:Notice:7] [2021-10-22 17:37:25.89 UTC] 432000
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotsPerKESPeriodShelley:Notice:7] [2021-10-22 17:37:25.89 UTC] 129600
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotLengthAllegra:Notice:7] [2021-10-22 17:37:25.89 UTC] 1s
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.epochLengthAllegra:Notice:7] [2021-10-22 17:37:25.89 UTC] 432000
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAllegra:Notice:7] [2021-10-22 17:37:25.89 UTC] 129600
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-22 17:37:25.89 UTC] 1s
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-22 17:37:25.89 UTC] 432000
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-22 17:37:25.89 UTC] 129600
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-22 17:37:25.89 UTC] 1s
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-22 17:37:25.89 UTC] 432000
Oct 22 17:37:26 production cardano-node[11421]: [producti:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-22 17:37:25.89 UTC] 129600
Oct 22 17:37:26 production cardano-node[11421]: Shutting down…
The topology file is not ok, check for the errors and restart the node
{
“Producers”: [
{
“addr”: “143.198.64.250”,
“port”: 6000,
“valency”: 1
}
{
“addr”: “147.182.246.174”,
“port”: 6000,
“valency”: 1
}
]
}
You omited the , after the } should be
“valency”: 1
},
{
I seem to have almost everything correct but I cannot issue
cardano-cli query stake-snapshot --stake-pool-id $(cat stakepoolid.txt) --mainnet
I get this error
MuxError MuxBearerClosed “<socket: 11> closed when reading data, waiting on next header True”
cardano-cli: MuxBearerClosed “<socket: 11> closed when reading data, waiting on next header True”
here are the last few lines from topologyUpdater_lastresult.json
{ “resultcode”: “201”, “datetime”:“2021-10-26 09:33:06”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “nice to meet you” }
{ “resultcode”: “403”, “datetime”:“2021-10-26 10:33:06”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: "glad you want to stay with us, but please check and enable your IP>
{ “resultcode”: “504”, “datetime”:“2021-10-26 10:33:07”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 10:33:11”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “204”, “datetime”:“2021-10-26 11:33:03”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “201”, “datetime”:“2021-10-26 11:33:06”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “nice to meet you” }
{ “resultcode”: “201”, “datetime”:“2021-10-26 11:33:07”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “nice to meet you” }
{ “resultcode”: “204”, “datetime”:“2021-10-26 12:33:09”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 12:33:09”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 12:33:09”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “204”, “datetime”:“2021-10-26 13:33:02”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 13:33:02”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 13:33:03”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “204”, “datetime”:“2021-10-26 14:33:03”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 14:33:08”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 14:33:11”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 15:33:04”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “204”, “datetime”:“2021-10-26 15:33:04”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 15:33:06”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “504”, “datetime”:“2021-10-26 15:54:52”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “one request per hour please” }
{ “resultcode”: “503”, “datetime”:“2021-10-26 16:33:04”, “clientIp”: “143.198.64.250”, “msg”: “blockNo 6420799 seems out of sync. please retry” }
{ “resultcode”: “503”, “datetime”:“2021-10-26 16:33:05”, “clientIp”: “143.198.64.250”, “msg”: “blockNo 6420799 seems out of sync. please retry” }
{ “resultcode”: “204”, “datetime”:“2021-10-26 16:33:06”, “clientIp”: “143.198.64.250”, “iptype”: 4, “msg”: “glad you’re staying with us” }
Any help would be awesome. Thanks in advance.