CHAIN DIGITAL | services for nodes
  • About CHAIN DIGITAL
  • Testnets
    • Celestia
      • Install
        • Full node
        • Bridge node
      • Upgrade
      • API/Snapshot/AddrBook
      • Useful Commands
      • Monitoring a Celestia consensus node
      • Celestia Validator monitoring guide with tenderduty
    • Walrus
      • Guide for Node Operators
  • MAINNETS
    • Celestia
      • Install
        • Full node
        • Bridge node
      • Upgrade
      • Useful Commands
    • Kusama
      • Install
      • Upgrade
      • RPC and Snapshot
      • Useful Commands
    • Polkadot
      • Install
      • Upgrade
      • RPC and Snapshot
      • Useful Commands
    • Sui
      • Sui Full Node
      • Sui Validator Node
  • VALIDATOR SECURITY
    • Server Security for Validators
Powered by GitBook
On this page
  • Automatic upgrade node
  • Manual upgrade node
  • Automatic upgrade app
  • Manual upgrade app
  1. MAINNETS
  2. Celestia

Upgrade

Automatic upgrade node

Manual upgrade node

sudo systemctl stop celestia-bridge
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.22.2 
make build 
sudo make install 
make cel-key
celestia bridge config-update
sudo systemctl restart celestia-bridge && sudo journalctl -u celestia-bridge -f

Automatic upgrade app

source <(curl -s https://raw.githubusercontent.com/chaindigital/celestia/main/upgradeappmain.sh)

Manual upgrade app

cd $HOME 
rm -rf celestia-app 
git clone https://github.com/celestiaorg/celestia-app.git 
cd celestia-app/ 
APP_VERSION=v3.8.1
git checkout tags/$APP_VERSION -b $APP_VERSION 
make install

sudo systemctl restart celestia-appd && sudo journalctl -u celestia-appd -f
PreviousBridge nodeNextUseful Commands

Last updated 1 month ago