> For the complete documentation index, see [llms.txt](https://service.coinhunterstr.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://service.coinhunterstr.com/mainnet/story-protocol/story-mainnet/upgrade.md).

# Upgrade

## STORY-GETH UPGRADE

### Geth v1.2.0

```
sudo systemctl stop story geth
wget -O $(which geth) https://github.com/piplabs/story-geth/releases/download/v1.2.0/geth-linux-arm64
chmod +x $(which geth)
sudo systemctl restart geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u geth -f
```

### Geth v1.1.2

```
sudo systemctl stop story geth
wget -O $(which geth) https://github.com/piplabs/story-geth/releases/download/v1.1.2/geth-linux-arm64
chmod +x $(which geth)
sudo systemctl restart geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u geth -f
```

### story-geth upgraded to v1.0.2

```
sudo systemctl stop story story-geth
cd $HOME
wget https://github.com/piplabs/story-geth/releases/download/v1.0.2/geth-linux-arm64
sudo mv ./geth-linux-arm64 story-geth
sudo chmod +x story-geth
sudo mv ./story-geth $HOME/go/bin/story-geth

sudo systemctl restart story-geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u story-geth -f
```

## STORY UPGRADE

### Story v1.4.2

```
sudo systemctl stop story
wget -O $(which story) https://github.com/piplabs/story/releases/download/v1.4.2/story-linux-arm64
chmod +x $(which story)
sudo systemctl restart geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u geth -f
```

### Story v1.3.3

```
sudo systemctl stop story
wget -O $(which story) https://github.com/piplabs/story/releases/download/v1.3.3/story-linux-arm64
chmod +x $(which story)
sudo systemctl restart geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u geth -f
```

### Story v1.3.2

```
sudo systemctl stop story
wget -O $(which story) https://github.com/piplabs/story/releases/download/v1.3.2/story-linux-arm64
chmod +x $(which story)
sudo systemctl restart geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u geth -f
```

### Story v1.3.1

```
sudo systemctl stop story
wget -O $(which story) https://github.com/piplabs/story/releases/download/v1.3.1/story-linux-arm64
chmod +x $(which story)
sudo systemctl restart geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u geth -f
```

### Story v1.2.1

```
sudo systemctl stop story
wget -O $(which story) https://github.com/piplabs/story/releases/download/v1.2.1/story-linux-arm64
chmod +x $(which story)
sudo systemctl restart story-geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u story-geth -f
```

### Story v1.2.0

```
# Servisi durdur
sudo systemctl stop story

# Yeni binary'yi indir
wget https://github.com/piplabs/story/releases/download/v1.2.0/story-linux-arm64
sudo mv story-linux-arm64 story
sudo chmod +x story
sudo mv ./story $HOME/go/bin/story

# Servisi tekrar başlat
sudo systemctl restart story-geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u story-geth -f
```

### Story v1.1.3

```
sudo systemctl stop story

wget http://snapshots.coinhunterstr.com/site/story-linux-arm64-1.1.3-38313e8 -O story.tar

mkdir -p story_extract
tar -xf story.tar -C story_extract

chmod +x /root/story_extract/story-linux-arm64-1.1.3-38313e8/story
mv /root/story_extract/story-linux-arm64-1.1.3-38313e8/story $HOME/go/bin/story

sudo systemctl restart story

story version


rm -rf story.tar story_extract

sudo systemctl restart story-geth && sleep 5 && sudo systemctl restart story
journalctl -u story -u story-geth -f
```

### Story v1.1.1

```
# Servisi durdur
sudo systemctl stop story

# Yeni binary'yi indir
wget https://github.com/piplabs/story/releases/download/v1.1.1/story-linux-arm64
sudo mv story-linux-arm64 story
sudo chmod +x story
sudo mv ./story $HOME/go/bin/story

# Servisi tekrar başlat
sudo systemctl start story
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://service.coinhunterstr.com/mainnet/story-protocol/story-mainnet/upgrade.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
