> For the complete documentation index, see [llms.txt](https://service.block-pro.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://service.block-pro.net/mainnet/celestia/bridge-node/upgrade.md).

# Upgrade

#### **Stop bridge node:**

```
sudo systemctl stop celestia-bridge
```

#### **Download binary:**

```
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.31.3 
make build 
sudo make install 
make cel-key
```

**Update:**

```
celestia bridge config-update --p2p.network celestia
```

{% hint style="info" %}
Check the node version:
{% endhint %}

```
celestia version

Result:
#version: v0.30.2
#commit: 789d2d5b000f04af619870248abc80443b777e89
```

Restart the node

```
sudo systemctl restart celestia-bridge && sudo journalctl -u celestia-bridge -fo cat
```
