Upgrade Story Validator
This guide walks you through upgrade Story-Geth v1.1.0
Manual Upgrade
- Stop Service Story-Geth:
sudo systemctl stop story-geth
- Download Story-Geth binary:
cd $HOMErm geth-linux-amd64wget https://github.com/piplabs/story-geth/releases/download/v1.1.0/geth-linux-amd64chmod +x geth-linux-amd64mv $HOME/geth-linux-amd64 $HOME/go/bin/story-gethsource $HOME/.bash_profilestory-geth version
- Restart Story-Geth Service:
sudo systemctl restart story-gethsudo journalctl -u story-geth -f -o cat
This guide walks you through upgrade Story v1.3.0
Manual Upgrade
- Stop Service Story:
sudo systemctl stop story
- Download Story binary:
cd $HOMErm -rf story-linux-amd64wget https://github.com/piplabs/story/releases/download/v1.3.0/story-linux-amd64[ ! -d "$HOME/go/bin" ] && mkdir -p $HOME/go/binif ! grep -q "$HOME/go/bin" $HOME/.bash_profile; then echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profilefichmod +x story-linux-amd64sudo cp $HOME/story-linux-amd64 $HOME/go/bin/storysource $HOME/.bash_profilestory version
- Restart Story Service:
sudo systemctl restart storysudo journalctl -u story -f -o cat