> For the complete documentation index, see [llms.txt](https://services.liveraven.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.liveraven.net/cosmos-mainnets/rebus-chain/snapshot.md).

# Snapshot

## **Stop the service and reset the data**

```bash
sudo systemctl stop rebusd
cp $HOME/.rebusd/data/priv_validator_state.json $HOME/.rebusd/priv_validator_state.json.backup
rm -rf $HOME/.rebusd/data
```

## **Download latest snapshot**

```bash
curl -L http://snapshots.liveraven.net/snapshots/rebus/reb_1111-1_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.rebusd
mv $HOME/.rebusd/priv_validator_state.json.backup $HOME/.rebusd/data/priv_validator_state.json
```

## **Restart the service and check the log**

```bash
sudo systemctl start rebusd && sudo journalctl -u rebusd -fn 100 -o cat
```
