> 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-testnets/arkeo/snapshot.md).

# Snapshot

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

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

## **Download latest snapshot**

```bash
curl -L https://snapshots.liveraven.net/snapshots/arkeo/arkeo_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.arkeo
mv $HOME/.arkeo/priv_validator_state.json.backup $HOME/.arkeo/data/priv_validator_state.json
```

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

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