Skip to main content

Upgrade

Odyssey

Story Version: version

Story-geth Version: version

Story

Steps to Update the Story Node build from github soucre (method 1)

git clone https://github.com/piplabs/story
cd story
git checkout v0.13.0
go build -o story ./client
sudo mv ~/story/story $(which story)
sudo systemctl restart story && sudo journalctl -u story -f

Steps to Update the Story Node direct download binary (method 2)

1. Stop the current Story service:

sudo systemctl stop story

2. Download the new Story binary:

cd $HOME
sudo rm story-linux-amd64
wget https://github.com/piplabs/story/releases/download/v0.13.0/story-linux-amd64

3. Replace new version

chmod +x story-linux-amd64
sudo cp $HOME/story-linux-amd64 $(which story)
source $HOME/.bash_profile
story version

5. Restart the Story node service and check the logs to ensure everything is running properly:

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

Story-geth

Steps to Update the Story-geth build from github soucre (method 1)

sudo systemctl stop story-geth
cd $HOME/story-geth
git fetch --all
git checkout v0.11.0
make geth
sudo mv ./build/bin/geth $(which story-geth)
story-geth version

Steps to Update the Story Node direct download binary (method 2)

sudo systemctl stop story-geth
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
sudo systemctl restart story-geth
sudo journalctl -u story-geth -f -o cat