Love2Stake Docs
  • Home
  • Cardano Wallets
    • Daedalus wallet
      • How to install Daedalus
      • How to create Wallet
      • How to transfer ADA to Wallet
      • How to delegate your ADA
  • How to create Stakepool
    • Mainnet
      • Create Stakepool on Mainnet
      • KES Renewal
    • Testnet
      • Create Stakepool on Testnet
  • Upgrade Cardano Node
    • Untitled
  • Cardano Node Set-up using CNTOOLs.
  • Stakepool Operator tools
    • Stakepool Sites
    • Leader Log Scripts
      • Epoch nonce
  • Security
    • Cardano Security for Stakepool Operators
  • About
  • Disclaimer
  • Support
Powered by GitBook
On this page

Was this helpful?

  1. Upgrade Cardano Node

Untitled

DRAFT

Check for latest config files

echo export NODE_BUILD_NUM=$(curl https://hydra.iohk.io/job/Cardano/iohk-nix/cardano-deployment/latest-finished/download/1/index.html | grep -e "build" | sed 's/.*build\/\([0-9]*\)\/download.*/\1/g')

Updating your node's configuration files

NODE_BUILD_NUM=$(curl https://hydra.iohk.io/job/Cardano/iohk-nix/cardano-deployment/latest-finished/download/1/index.html | grep -e "build" | sed 's/.*build\/\([0-9]*\)\/download.*/\1/g')
cd $NODE_HOME
wget -N https://hydra.iohk.io/build/${NODE_BUILD_NUM}/download/1/${NODE_CONFIG}-byron-genesis.json
wget -N https://hydra.iohk.io/build/${NODE_BUILD_NUM}/download/1/${NODE_CONFIG}-shelley-genesis.json
wget -N https://hydra.iohk.io/build/${NODE_BUILD_NUM}/download/1/${NODE_CONFIG}-config.json
sed -i ${NODE_CONFIG}-config.json \
    -e "s/SimpleView/LiveView/g" \
    -e "s/TraceBlockFetchDecisions\": false/TraceBlockFetchDecisions\": true/g"

Update OS if required:

sudo apt-get update -y
sudo apt-get upgrade -y

PreviousCreate Stakepool on TestnetNextCardano Node Set-up using CNTOOLs.

Last updated 4 years ago

Was this helpful?