> 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/fuel/upgrade.md).

# Upgrade

Upgrading your node is necessary to get the latest features, improvements, and security updates. Follow the instructions below:

## Update instruction on block [2988700](https://mainnet.block-pro.net/fuel/block/2988700)

### 1. Check Current Version

```bash
fuelsequencerd version --long
```

Make a note or remember your current version.

***

### 2. Download the New Version

```bash
cd $HOME
wget -O fuelsequencerd https://github.com/FuelLabs/fuel-sequencer-deployments/releases/download/seq-mainnet-1.3/fuelsequencerd-seq-mainnet-1.3-linux-amd64
chmod +x fuelsequencerd
```

***

### 3. Install the New Version

Before replacing the binary, check the path of the current version:

```bash
which fuelsequencerd
```

Then move the new binary to this path, replacing the old one:

```bash
sudo mv $HOME/fuelsequencerd $(which fuelsequencerd)
```

***

### 4. Verify Installed Version

```bash
fuelsequencerd version --long | grep -e commit -e version
```

Expected output:

```
#version:seq-mainnet-1.3
#commit:d25152c041602c16aced7fbdd207bede18ae1918
```

***

### 5. Restart the Service

```bash
sudo systemctl restart fuelsequencerd
```

***

### 6. Check Service Status and Logs

```bash
sudo systemctl status fuelsequencerd
sudo journalctl -fu fuelsequencerd -o cat
```

Make sure the service is running without errors.

***

### Important Note

Before upgrading, it is recommended to back up your data and have console access to your server in case any issues arise.

For more detailed information, refer to the [Fuel Node Installation Guide.](https://docs.fuel.network/docs/node-operator/fuel-sequencer/mainnet-validator/)
