Upgrade to 10.6.2
Safe upgrade guide from older 8.x/9.x/10.x nodes to cardano-node 10.6.2.
0) Pre-checks
cardano-node --version
cardano-cli --version
systemctl status cardano-node --no-pager1) Download and verify the release artifact
cd /tmp
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then FILE=cardano-node-10.6.2-linux-amd64.tar.gz; else FILE=cardano-node-10.6.2-linux-arm64.tar.gz; fi
curl -L -o "$FILE" "https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/$FILE"
curl -L -o cardano-node-10.6.2-sha256sums.txt "https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/cardano-node-10.6.2-sha256sums.txt"
sha256sum "$FILE"
cat cardano-node-10.6.2-sha256sums.txt2) Back up binaries and configs
3) Install new binaries
4) Refresh config files
5) Restart the node
6) Post-upgrade validation
7) Rollback (if needed)
Notes
Topic
Detail
Last updated