Not able to see my pool publicly registered with adapools.org, pool.vet, etc

If your relay is running properly at the startup script you specified a path for the socket.
For example if you used the coincashew guide your relay startup script should have a line SOCKET_PATH=\${DIRECTORY}/db/socket where DIRECTORY=$NODE_HOME

Edit you topology updater script file and check if you have the correct path for the socket.
Again if you used the coincashew guide you should have a line export CARDANO_NODE_SOCKET_PATH="\${CNODE_HOME}/db/socket" where CNODE_HOME=$NODE_HOME

If your topology updater script file is correct then your node is probably not running.

Here is my topologyUpdater.sh. It looks just like the one on relay 2
!/bin/bash

shellcheck disable=SC2086,SC2034

USERNAME=redbull
CNODE_PORT=6000 # 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/redbull/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}” = “764824073” ]] && NETWORK_IDENTIFIER="–mainnet" || NETWORK_IDENTIFIER="–testnet->

export PATH="${CNODE_BIN}:${PATH}"
export CARDANO_NODE_SOCKET_PATH="${CNODE_HOME}/db/socket"

blockNo=$(/usr/local/bin/cardano-cli query tip ${NETWORK_IDENTIFIER} | jq -r .block )

Note:

if you run your node in IPv4/IPv6 dual stack network configuration and want announced the

IPv4 address only please add the -4 parameter to the curl command below (curl -4 -s …)

if [ “${CNODE_HOSTNAME}” != “CHANGE ME” ]; then
T_HOSTNAME="&hostname=${CNODE_HOSTNAME}"
else
T_HOSTNAME=’’
fi

if [ ! -d ${CNODE_LOG_DIR} ]; then
mkdir -p ${CNODE_LOG_DIR};
fi

Use sudo systemctl status cardano-node and check if your node is active and running.
At your startup script(probably startRelayNodeX.sh) the export socket path is /home/redbull/cardano-my-node/db/socket ?

I just restarted the node. this is my start script
!/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} --hos>

Everything looks good with the paths.
So after restarting is you node up and running? Did you try to run topology updater again?

I still get the socket error.
redbull@relay1:~/cardano-my-node$ sudo systemctl start cardano-node
redbull@relay1:~/cardano-my-node$ sudo systemctl status cardano-node
● cardano-node.service - Cardano node service
Loaded: loaded (/etc/systemd/system/cardano-node.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2021-10-30 12:36:50 UTC; 5s ago
Main PID: 51593 (startRelayNode1)
Tasks: 15 (limit: 9499)
Memory: 214.0M
CGroup: /system.slice/cardano-node.service
├─51593 /bin/bash /home/redbull/cardano-my-node/startRelayNode1.sh
└─51594 /usr/local/bin/cardano-node run +RTS -N -A16m -qg -qb -RTS --topology /home/redbull/cardano-my-node/mainnet-topology.json >

Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-30 12:36:51.83 UTC] 1s
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-30 12:36:51.83 UTC] 432000
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-30 12:36:51.83 UTC] 129600
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-30 12:36:51.83 UTC] 1s
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-30 12:36:51.83 UTC] 432000
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-30 12:36:51.83 UTC] 129600
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.addresses:Notice:7] [2021-10-30 12:36:51.83 UTC] [SocketInfo 0.0.0.0:6000]
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.diffusion-mode:Notice:7] [2021-10-30 12:36:51.83 UTC] InitiatorAndResponderDif>
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.dns-producers:Notice:7] [2021-10-30 12:36:51.83 UTC] [DnsSubscriptionTarget {d>
Oct 30 12:36:52 relay1 cardano-node[51594]: [relay1:cardano.node.ip-producers:Notice:7] [2021-10-30 12:36:51.83 UTC] IPSubscriptionTarget {ispI>
redbull@relay1:~/cardano-my-node$ ./topologyUpdater.sh

cardano-cli: Network.Socket.connect: <socket: 11>: does not exist (No such file or directory){ “resultcode”: “502”, “datetime”:“2021-10-30 12:37:16”, “clientIp”: “143.198.64.250”, “msg”: “invalid blockNo ” }

Please check at the bottom of your .bashrc if you added export CARDANO_NODE_SOCKET_PATH=/home/redbull/cardano-my-node/db/socket
Use nano $HOME/.bashrc

Also for a strange reason i tried checking your port at the relay but it’s unreachable.

Heres the bottom of the .bashrc file. I think it looks ok. Maybe it’s the relay port.
ATH=/home/redbull/.local/bin:/home/redbull/.cabal/bin:/home/redbull/.ghcup/bin:/home/redbull/.local/bin:/home/redbull/.cabal/bin:/home/redbull>
export LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib:/usr/local/lib:
export NODE_HOME=/home/redbull/cardano-my-node
export NODE_CONFIG=mainnet
export CARDANO_NODE_SOCKET_PATH=/home/redbull/cardano-my-node/db/socket
export CARDANO_NODE_SOCKET_PATH=/home/redbull/cardano-my-node/db/socket
export LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib:/usr/local/lib:/usr/local/lib:
export NODE_HOME=/home/redbull/cardano-my-node
export LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib:/usr/local/lib:/usr/local/lib:/usr/local/lib:
export NODE_HOME=/home/redbull/cardano-my-node

How can I set cardano-node to listen on port 6000? I see it set on my Relay 2 but not Relay 1. That’s gotta be the issue.

redbull@relay1:~$ sudo netstat -tulpn | grep LISTEN
tcp 0 0 0.0.0.0:2288 0.0.0.0:* LISTEN 770/sshd: /usr/sbin
tcp 0 0 127.0.0.1:12788 0.0.0.0:* LISTEN 753/cardano-node
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 620/systemd-resolve
tcp 0 0 0.0.0.0:12798 0.0.0.0: LISTEN 753/cardano-node**
tcp6 0 0 :::9100 :::* LISTEN 718/prometheus-node
tcp6 0 0 :::2288 :::* LISTEN 770/sshd: /usr/sbin
tcp6 0 0 :::3000 :::* LISTEN 710/grafana-server
tcp6 0 0 :::9090 :::* LISTEN 721/prometheus

How can I change the 4th line to this
tcp 0 0 0.0.0.0:6000 0.0.0.0: LISTEN 753/cardano-node**

You should not modify (from config file)

Can u resume what is the issue?

Here is the log after restart
redbull@relay1:~/cardano-my-node$ sudo systemctl status cardano-node
● cardano-node.service - Cardano node service
Loaded: loaded (/etc/systemd/system/cardano-node.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2021-10-30 19:32:36 UTC; 21s ago
Main PID: 2231 (startRelayNode1)
Tasks: 16 (limit: 9499)
Memory: 698.3M
CGroup: /system.slice/cardano-node.service
├─2231 /bin/bash /home/redbull/cardano-my-node/startRelayNode1.sh
└─2232 /usr/local/bin/cardano-node run +RTS -N -A16m -qg -qb -RTS --topology /home/redbull/cardano-my-node/mainnet-topology.json --database-path >

Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-30 19:32:37.98 UTC] 1s
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-30 19:32:37.98 UTC] 432000
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-30 19:32:37.98 UTC] 129600
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-30 19:32:37.98 UTC] 1s
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-30 19:32:37.98 UTC] 432000
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-30 19:32:37.98 UTC] 129600
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.addresses:Notice:7] [2021-10-30 19:32:37.98 UTC] [SocketInfo 0.0.0.0:6000]
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.diffusion-mode:Notice:7] [2021-10-30 19:32:37.98 UTC] InitiatorAndResponderDiffusionMode
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.dns-producers:Notice:7] [2021-10-30 19:32:37.98 UTC] [DnsSubscriptionTarget {dstDomain = "rela>
Oct 30 19:32:38 relay1 cardano-node[2232]: [relay1:cardano.node.ip-producers:Notice:7] [2021-10-30 19:32:37.98 UTC] IPSubscriptionTarget {ispIps = [

Ok, this is the Producer right?
The Relay is working fine? It is synced? It has IN peers? The nodes are Hosted in cloud?
if u try from Producer

telnet Relay_IP 6000 do u see connected?

No this is my Relay. My BP and relay 2 are up and running.
The relay 2 is synced and I just redownloaded the db for relay 1. These are cloud hosted. I just rebuilt relay 1 because it was acting really weird. No I can not telnet from my BP to relay

ok, perhaps because the node doesn’t started yet…
ok, how is the Relay1 now, can u open glive?

Yes. I can open gliveview. It says starting but I just synced to 100%. It tries to connect then fails, the rereads some block info then repeats.

what is the HW configuration?
can u check the uptime status of the node with sudo systemctl status cardano-node?

redbull@relay1:~/cardano-my-node$ sudo systemctl status cardano-node
[sudo] password for redbull:
● cardano-node.service - Cardano node service
Loaded: loaded (/etc/systemd/system/cardano-node.service; enabled; vendor preset: enabled)
Active: active (running) since Sun 2021-10-31 11:09:11 UTC; 10min ago
Main PID: 31854 (startRelayNode1)
Tasks: 17 (limit: 9499)
Memory: 6.5G
CGroup: /system.slice/cardano-node.service
├─31854 /bin/bash /home/redbull/cardano-my-node/startRelayNode1.sh
└─31855 /usr/local/bin/cardano-node run +RTS -N -A16m -qg -qb -RTS --topology /home/redbull/cardano-my-node>

Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.basicInfo.slotLengthMary:Notice:7] [2021-10-31 11:09:12>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.basicInfo.epochLengthMary:Notice:7] [2021-10-31 11:09:1>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.basicInfo.slotsPerKESPeriodMary:Notice:7] [2021-10-31 1>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.basicInfo.slotLengthAlonzo:Notice:7] [2021-10-31 11:09:>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.basicInfo.epochLengthAlonzo:Notice:7] [2021-10-31 11:09>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.basicInfo.slotsPerKESPeriodAlonzo:Notice:7] [2021-10-31>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.addresses:Notice:7] [2021-10-31 11:09:12.18 UTC] [Socke>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.diffusion-mode:Notice:7] [2021-10-31 11:09:12.18 UTC] I>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.dns-producers:Notice:7] [2021-10-31 11:09:12.18 UTC] [D>
Oct 31 11:09:12 relay1 cardano-node[31855]: [relay1:cardano.node.ip-producers:Notice:7] [2021-10-31 11:09:12.18 UTC] IPS>

And the glive status, btw did u started the Relay1 with another port than 6000?
Also did u edited the env file?

gLiveView is stuck at starting. I did not change the port from 6000. I did not edit env
#!/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 (https://github.com>
#CNODE_HOME="/opt/cardano/cnode" # Override default CNODE_HOME path (defaults to /opt/cardano/cno>
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>
#TMP_DIR="/tmp/cnode" # Folder to hold temporary files in the various scripts, each sc>
#USE_EKG=“Y” # Use EKG metrics from the node instead of Prometheus. Prometheu>
#EKG_HOST=127.0.0.1 # Set node EKG host IP
[ Read 864 lines ]
#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 bef>
#CURL_TIMEOUT=10 # Maximum time in seconds that you allow curl file download to t>
#BLOCKLOG_DIR="${CNODE_HOME}/guild-db/blocklog" # Override default directory used to store block data for core n>
#BLOCKLOG_TZ=“UTC” # TimeZone to use when displaying blocklog - https://en.wikipedi>
#SHELLEY_TRANS_EPOCH=208 # Override automatic detection of shelley epoch start, e.g 208 f>
#TG_BOT_TOKEN="" # Uncomment and set to enable telegramSend function. To create y>
#TG_CHAT_ID="" # https://cardano-community.github.io/guild-operators/Scripts/se>
#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>
#PGREST_API=“http://127.0.0.1:8050” # Uncomment and set to enable PostgREST API queries against DB-S>
#DBSYNC_QUERY_FOLDER="${CNODE_HOME}/files/dbsync/queries" # [advanced feature] Folder containing DB-Sync chain analysis >

#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 contain>
#POOL_NAME="" # Set the pool’s name to run node as a core node (the name, NOT >

#WALLET_PAY_VK_FILENAME=“payment.vkey” # Standardized names for all wallet related files