Upgrade node
Update geth 1.1.1
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.1
make geth
sudo chmod +x build/bin/gethDownload a snapshot from community members
Stop story and geth
sudo systemctl stop story story-gethReplace binary
mv build/bin/geth $HOME/go/bin/gethRestart story and geth
sudo systemctl restart story-geth storyDownload snapshot
Check logs
sudo journalctl -u story-geth -f -o catUpdate Story client
Stop the node
sudo systemctl stop storyBuild Story binary 1.4.0
cd $HOME
rm -rf story
git clone https://github.com/piplabs/story
cd story
git checkout v1.4.0
go build -o story ./client
mkdir -p $HOME/go/bin/
mv $HOME/story/story $HOME/go/bin/
story versionRestart the node and check logs
sudo systemctl restart story
sudo journalctl -u story -f -o catLast updated