Upgrade node

Update GETH 0.11.0

Stop the node

sudo systemctl stop story-geth

Get binary

cd $HOME
rm geth-linux-amd64
wget https://github.com/piplabs/story-geth/releases/download/v0.11.0/geth-linux-amd64
chmod +x geth-linux-amd64
mv $HOME/geth-linux-amd64 $HOME/go/bin/story-geth
source $HOME/.bash_profile
story-geth version

Restart the node and check logs

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

Update Story client

Stop the node

sudo systemctl stop story

Get binary 0.13.0

cd $HOME
rm story-linux-amd64
wget https://github.com/piplabs/story/releases/download/v0.13.0/story-linux-amd64
chmod +x story-linux-amd64
mv $HOME/story-linux-amd64 $HOME/go/bin/story
source $HOME/.bash_profile
story version

Restart the node and check logs

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

Last updated