Cardano-node-services - LOADING - should I run something else?

sudo systemctl reload-or-restart cardano-node

yes, but you care calling a script …
startBlockProducingNode.sh or startRelayNode1.sh

1 Like

ohhh I see - sorry - I used startRelayNode1.sh

I was messing around to find the root of my problem and installed cardano-node.service which is now causing MORE troubles.
Should I delete it? If so, how? rm isn’t working for this

This is what I cat’d to the file:

cat <<EOF | sudo tee -a /etc/systemd/system/cardano-node.service
[Unit]
Description=Cardano Pool
After=multi-user.target
[Service]
Type=simple
ExecStart=/home/cardano/.local/bin/cardano-node run --config /home/cardano/cnode/config/mainnet-config.json --topology /home/cardano/cnode/config/mainnet-topology.json --database-path /home/cardano/cnode/db/ --socket-path /home/cardano/cnode/sockets/node.socket --host-addr 0.0.0.0 --port 3001

KillSignal = SIGINT
RestartKillSignal = SIGINT
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=cardano
LimitNOFILE=32768

Restart=on-failure
RestartSec=15s
WorkingDirectory=~
User=cardano
Group=cardano
[Install]
WantedBy=multi-user.target
EOF