Major credits and appreciation to the fine folks at Cardano Community Guild Operators for creating and maintaining CNtool, a most helpful swiss army knife for pool operators. You MUST be familiar with how ADA staking works and possess fundamental Linux system administration skills before continuing this guide.
Relay nodes do not have any keys, so they cannot produce blocks. Instead, relays act as proxies between the core network nodes and the internet, establishing a security perimeter around the core, block-producing network nodes. Since external nodes cannot communicate with block-producing nodes directly, relay nodes ensure that the integrity of the core nodes and the blockchain remains intact, even if one or more relays become compromised.
A different server/VM (not located on the same machine as your block-producer node)
Installs prerequisite dependencies and creates folder structure.
sudo apt-get install curl net-tools
mkdir "$HOME/tmp";cd "$HOME/tmp"# Install curl# CentOS / RedHat - sudo dnf -y install curl# Ubuntu / Debian - sudo apt -y install curlcurl -sS -o prereqs.sh https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/prereqs.shchmod 755 prereqs.sh# Ensure you can run sudo commands with your user before execution# You can check the syntax for prereqs.sh using command below:## ./prereqs.sh -h# Usage: prereqs.sh [-o] [-s] [-i] [-g] [-p]# Install pre-requisites for building cardano node and using cntools# -o Do *NOT* overwrite existing genesis, topology.json and topology-updater.sh files (Default: will overwrite)# -s Skip installing OS level dependencies (Default: will check and install any missing OS level prerequisites)# -i Interactive mode (Default: silent mode)# -g Connect to guild network instead of public network (Default: connect to public cardano network)# -p Copy Transitional Praos config as default instead of Combinator networks (Default: copies combinator network)# You can use one of the options above, if you'd like to defer from defaults (below).# Running without any parameters will run script in silent mode with OS Dependencies, and overwriting existing files../prereqs.sh
Reload environment variables.
. "${HOME}/.bashrc"
Familiarize yourself with the folder structure created by CNtools.
cd ~/gitgit clone https://github.com/input-output-hk/cardano-nodecd cardano-node
git fetch --tags --allgit pull# Replace tag 1.24.2 with the version/branch you'd like to buildgit checkout 1.24.2echo -e "package cardano-crypto-praos\n flags: -external-libsodium-vrf" > cabal.project.local$CNODE_HOME/scripts/cabal-build-all.sh
sudo cp $HOME/.cabal/bin/cardano* /usr/local/bin
cardano-cli versioncardano-node version
Auto-start your node when the computer reboots due to maintenance, power outage, etc.
Automatically restart crashed node processes.
Maximize your stake pool up-time and performance.
sudo bash -c "cat << 'EOF' > /etc/systemd/system/cnode.service[Unit]Description=Cardano NodeAfter=network.target[Service]Type=simpleRestart=on-failureRestartSec=5User=$USERLimitNOFILE=1048576WorkingDirectory=$CNODE_HOME/scriptsExecStart=/bin/bash -l -c \"exec $CNODE_HOME/scripts/cnode.sh\"ExecStop=/bin/bash -l -c \"exec kill -2 \$(ps -ef | grep [c]ardano-node.*.${CNODE_HOME} | tr -s ' ' | cut -d ' ' -f2)\"KillSignal=SIGINTSuccessExitStatus=143StandardOutput=syslogStandardError=syslogSyslogIdentifier=cnodeTimeoutStopSec=5KillMode=mixed[Install]WantedBy=multi-user.targetEOF"sudo systemctl daemon-reloadsudo systemctl enable cnode.service
Nice work. Your node is now managed by the reliability and robustness of systemd. Below are some commands for using systemd.
sudo systemctl is-active cnode
sudo systemctl status cnode
sudo systemctl reload-or-restart cnode
sudo systemctl stop cnode
journalctl --unit=cnode --since=yesterdayjournalctl --unit=cnode --since=todayjournalctl --unit=cnode --since='2020-07-29 00:00:00' --until='2020-07-29 12:00:00'
Pro tip: 🎇 Speed this step up by copying the db folder from another node you control.
sudo systemctl start cnode
Install Guild LiveView.
cd $CNODE_HOME/scriptscurl -s -o gLiveView.sh https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/gLiveView.shcurl -s -o env https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/envchmod 755 gLiveView.sh
Run Guild Liveview.
./gLiveView.sh
Sample output of Guild Live View
For more information, refer to the official Guild Live View docs.
Use pooltool.io and the get_buddies script to manage your NEW relay node's topology.
Alternatively use topologyUpdater.sh. Refer to the official documentation for more info.
After adding your relay node information to pooltool or the topologyUpdater.sh process, review your topology.json and check that it looks correct. Your new relay node's topology should contain your block producer node, your other relay nodes, and other public buddy relay nodes.
cat $CNODE_HOME/files/topology.json
Specific to your networking setup or cloud provider settings, ensure your relay node's port 6000 is open and reachable.
✨ Port Forwarding Tip: Check that your relay port 6000 is open with https://www.yougetsignal.com/tools/open-ports/ or https://canyouseeme.org/ .
Additionally, if you have node-exporter installed for grafana stats, you will need to open ports 9100 and 12798. Don't forget to update prometheus.yml
on your prometheus server (aka relaynode1). Restart prometheus service for the new relay node to appear in your dashboard.
Finally, add your new NEW relay node IP/port information to your EXISTING block producer and/or relay node's topology file.
For your block producer node, you'll want to manually add the new relay node information to your topology.json file.
Example snippet to add to your block producer's topology file. Add a comma to separate the nodes where appropriate.
{"addr": "<relay node public ip address>","port": 6000,"valency": 1}
For relay nodes, you can use pooltool.io or topologyUpdater process to manage your topology file.
On the Guild LiveView screen, press P
to view the peer list. You should see the connection to other node's IP.
✨ Congrats on the new relay node.
🔥 Critical Security Reminder: Relay nodes must not contain any operational certifications
, vrf
, skey
or cold
keys.
Congrats on completing the guide. ✨
Did you find our guide useful? Send us a signal with a tip and we'll keep updating it.
It really energizes us to keep creating the best crypto guides.
Use cointr.ee to find our donation addresses. 🙏
Any feedback and all pull requests much appreciated. 🌛
Hang out and chat with fellow stake pool operators on Discord @
https://discord.gg/w8Bx8W2HPW 😃
Hang out and chat with our stake pool community on Telegram @ https://t.me/coincashew