> 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/testnet/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.2-mocha
make build
sudo make install
make cel-key
```

**Update:**

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

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

```
celestia version

Result:
#version: v0.31.2
#commit: 1e9e7208e4e59e5bae0e03588b0d51632c98b669
```

Restart the node

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