Upgrading a Node
🎉 Introduction
If you want to support this free educational Cardano content or found the content helpful, visit cointr.ee to find our donation addresses. Much appreciated in advance. 🙏
📒Technical writing by Change Pool (ticker CHG)
Input-Output (IOHK) regularly releases new versions of Cardano Node via the cardano-node GitHub repository. Carefully review release notes available in the repository for new features, configurations, known issues, technical specifications, related downloads, documentation, changelogs, assets and other details of each new release.
The Upgrading a Node topic describes how to upgrade a Cardano node to the latest version. Complete the following procedures on each block producer and relay node comprising your stake pool as needed to complete the upgrade.
💞 Upgrading Third-party Software
CNCLI
If you use CNCLI command line utilities developed by the Cardano Community, then upgrade to the latest version if a newer version is available.
Do not confuse the Cardano Community's CNCLI utilities with the cncli.sh companion script for stake pool operators maintained by Guild Operators.
To upgrade the Cardano Community's CNCLI binary:
In a terminal window, type the following commands:
RELEASETAG=$(curl -s https://api.github.com/repos/cardano-community/cncli/releases/latest | jq -r .tag_name)
VERSION=$(echo ${RELEASETAG} | cut -c 2-)
echo "Installing release ${RELEASETAG}"
curl -sLJ https://github.com/cardano-community/cncli/releases/download/${RELEASETAG}/cncli-${VERSION}-ubuntu22-x86_64-unknown-linux-gnu.tar.gz -o /tmp/cncli-${VERSION}-ubuntu22-x86_64-unknown-linux-gnu.tar.gz
sudo tar xzvf /tmp/cncli-${VERSION}-ubuntu22-x86_64-unknown-linux-gnu.tar.gz -C /usr/local/bin/2. To confirm that the new version of the CNCLI binary is installed, type:
If the command displays the latest version number, then the upgrade is successful.
Guild LiveView
Guild Operators maintains a set of tools to simplify operating a Cardano stake pool, including Guild LiveView. If you use the gLiveView script, then ensure that you are using the latest version prior to upgrading your Cardano node.
To upgrade the Guild LiveView tool manually:
To back up existing Guild LiveView script files, type the following commands where
<gLiveViewFolder>is the folder where thegLiveView.shscript is located on your computer:
2. To download the latest Guild LiveView script files, type:
3. To set file permissions on the gLiveView.sh file that you downloaded in step 2, type:
4. To set the CONFIG and SOCKET user variables in the env file that you downloaded in step 2, type the following command where <ConfigFileName> is config-bp.json on your block-producing node and config.json on all your relay nodes:
5. As needed to configure Guild LiveView for your stake pool, use a text editor to transfer additional user variable definitions from the env.bak file that you created in step 1 to the env file that you downloaded in step 2.
6. To test the upgrade, type:
If the upgrade is successful, then the terminal window displays the Guild LiveView dashboard having the version number of the latest release.
🔩Setting GHC and Cabal Versions
For each Cardano Node release, Input-Output recommends compiling binaries using specific versions of GHC and Cabal. For example, refer to Installing cardano-node and cardano-cli from source in the Cardano Developer Portal to determine the GHC and Cabal versions required for the current Cardano Node release. Table 1 lists GHC and Cabal version requirements for the current Cardano Node release.
Table 1 Current Cardano Node Version Requirements
July 2025
10.5.1
10.11.0.0
9.6.7
3.12.1.0
To upgrade the GHCup installer for GHC and Cabal to the latest version:
In a terminal window, type:
To install other GHC versions:
In a terminal window, type the following commands where
<GHCVersionNumber>is the GHC version that you want to install and use:
To install other Cabal versions:
In a terminal window, type the following commands where
<CabalVersionNumber>is the Cabal version that you want to install and use:
To update Libsodium:
As of version 8.0.0, a new version of libsodium is required.
To update secp256k1:
As of version 8.9.0, a new version of libsecp256k1 is required
To install the blst library:
As of version 8.9.0, a new version of blst is required.
📥Downloading New Configuration Files
A new Cardano Node release may include updated configuration files. If configuration files are updated for a release, then you need to download and install the new configuration files when you upgrade a node.
To download and install new Cardano Node configuration files:
To stop your Cardano node, type the following command in a terminal window where
<CardanoServiceName>is the name of the systemd service running your Cardano node:
2. To back up the configuration files that your node currently uses, type the following commands as appropriate where <ConfigurationFileFolder> is the path to the folder where the configuration files are located:
3. Using a Web browser, navigate to the Cardano Node GitHub repository, then browse to the latest release, then click to expand the Downloads dropdown list in the Technical Specification section of the release notes, and then click the Configuration Files link.
4. On the Cardano Configurations page, click the following links to download configuration files for the mainnet cluster to the folder where you created backups of your current configuration files in step 2: config, byronGenesis, shelleyGenesis, alonzoGenesis, conwayGenesis and topology
As of version 8.9.0, you need to download a new config file, conway-genesis.json
Then, verify config.json contains the following two lines:
5. Using diff or a similar file comparison utility, identify and copy customizations as needed from the backup configuration files that you created in step 2 to each new configuration file that you downloaded in step 4.
The config.json file contains hashes for the byron-genesis.json, shelley-genesis.json, alonzo-genesis.json and conway-genesis.json files using the ByronGenesisHash, ShelleyGenesisHash, AlonzoGenesisHash and ConwayGenesisHash keys, respectively. Therefore, do NOT manually edit the *genesis.json files.
⚡Installing New Cardano Binaries
You can install pre-built Cardano Node binaries available for download from the Cardano Node GitHub repository, or you can download the source code and compile the binaries yourself.
Using Pre-built Binaries
To install pre-built Cardano Node binaries:
To create a temporary path to store the pre-built binaries, type:
Using a Web browser, visit the Releases page for the Cardano Node GitHub repository, and then scroll down to the Assets section for the Cardano Node release you want to install. Right-click the archive containing the binaries that you want to install, and then click Copy Link
To download the binaries, type the following commands where the link that you copied in step 2:
To extract the archive that you downloaded in step 3, type:
To install the new node and cli binaries, type:
To delete the temporary folder, type:
Complete the upgrade.
Compiling the Binaries
To build binaries for a new Cardano Node version:
To create a clone of the Cardano Node GitHub repository, type the following commands in a terminal window on the computer you want to upgrade where
<NewFolderName>is the name of a folder that does not exist:
Cloning the GitHub repository to a new folder allows you to roll back the upgrade, if needed, by re-installing on your computer the cardano-node and cardano-cli binaries from a folder where you compiled a previous version of Cardano Node packages.
2. To build Cardano Node binaries using the source code that you downloaded in step 1, type the following commands where <NewFolderName> is the name of the folder you created in step 1 and <GHCVersionNumber> is the GHC version that you set in the section Setting GHC and Cabal Versions:
The time required to compile the cardano-node and cardano-cli packages may be a few minutes to hours, depending on the specifications of your computer.
3. When the compiler finishes, to verify the version numbers of the new cardano-node and cardano-cli binaries type:
To install the binaries that you compiled:
If your Cardano node is running, then type the following command to stop the node where
<CardanoServiceName>is the name of the systemd service running your node:
2. To replace the existing cardano-node and cardano-cli binaries, type the following commands where <DestinationPath> is the absolute file path to the folder where you install Cardano Node binaries on your local computer:
If you follow the Coin Cashew instructions for Compiling Source Code, then <DestinationPath> is /usr/local/bin
Completing the Upgrade
To finish upgrading Cardano Node binaries:
1. To verify that you installed the new Cardano Node binaries successfully, type:
2. Restart your Cardano node systemd service to finish the upgrade process.
3. Optionally, to install the latest versions of all previously installed packages on your computer, and then reboot the computer, type:
4. Copy the new cardano-cli binary to the air-gapped, offline computer that you use to sign transactions for your stake pool.
5. On your air-gapped, offline computer, ensure that libsecp256k1 and blst are installed and up to date.
🏁Verifying the Upgrade
To verify that the upgrade is successful, open gLiveView, journalctl logs or Grafana dashboard.
After an upgrade, starting a node may take up to a few hours. Be patient.
Congrats on completing the update. ✨
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 our stake pool community on Telegram @ https://t.me/coincashew
🚨Troubleshooting
If your upgrade is unsuccessful, then try Fixing a Corrupt Blockchain and Resetting an Installation, as needed.
Last updated