cryptomolot docs
  • 💎cryptomolot
  • 🏗️Testnets
    • Alignedlayer
      • How to create Public RPC Alignedlayer
    • Artela
      • How to create Public RPC Artela
    • Celestia
      • Celestia - Validator Node
      • Celestia - Bridge Node
      • How to create Public RPC Celestia
    • 0G (Zero Gravity)
      • 0G RPC Node
      • 0G Storage Node
        • Upgrade storage node 1.0.0
      • 0G DA Node
      • How to create Public RPC 0G
      • Monitoring tool
      • Snapshot
    • Side Protocol
      • How to create Public RPC Side
    • Warden Protocol
    • Story Protocol
      • Upgrade node
      • Cheatsheet
      • Monitoring tool
      • Alerts about your node failures
  • 🚀Mainnets
    • Aptos
      • Tools to monitore your validator
        • Alerts for your validator via telegram public
      • How to move node using snapshot
      • Fullnode security
      • Snapshot
Powered by GitBook
On this page
  • Update geth 1.1.0
  • Build geth binary
  • Download a snapshot from community members
  • Stop story and geth
  • Replace binary
  • Restart story and geth
  • Download snapshot
  • Check logs
  • Update Story client
  • Stop the node
  • Build Story binary 1.2.0
  • Restart the node and check logs
  1. Testnets
  2. Story Protocol

Upgrade node

Update geth 1.1.0

Build geth binary

cd $HOME
rm -rf story-geth
git clone https://github.com/piplabs/story-geth.git
cd story-geth
git checkout v1.1.0
make geth
sudo chmod +x build/bin/geth

Download a snapshot from community members

Stop story and geth

sudo systemctl stop story story-geth

Replace binary

mv build/bin/geth  $HOME/go/bin/geth

Restart story and geth

sudo systemctl restart story-geth story

Download snapshot

Check logs

sudo journalctl -u story-geth -f -o cat

Update Story client

Stop the node

sudo systemctl stop story

Build Story binary 1.2.0

cd $HOME
rm -rf story
git clone https://github.com/piplabs/story
cd story
git checkout v1.2.0
go build -o story ./client 
mkdir -p $HOME/go/bin/
mv $HOME/story/story $HOME/go/bin/
story version

Restart the node and check logs

sudo systemctl restart story
sudo journalctl -u story -f -o cat

PreviousStory ProtocolNextCheatsheet

Last updated 23 days ago

🏗️