Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 671 Bytes

Stargaze.md

File metadata and controls

23 lines (20 loc) · 671 Bytes

Download latest snapshot (using the example of Osmosis)

Stop Stargaze service
systemctl stop stargaze.service

Remove old data in directory ~/.starsd/data

rm -rf ~/.starsd/data; \
mkdir -p ~/.starsd/data; \
cd ~/.starsd/data

Download snapshot

SNAP_NAME=$(curl -s http://135.181.60.250:8086/stargaze/ | egrep -o ">stargaze.*tar" | tr -d ">"); \
wget -O - http://135.181.60.250:8086/stargaze/${SNAP_NAME} | tar xf -

alt text

Start service and check logs

systemctl start stargaze.service; \
journalctl -u stargaze.service -f --no-hostname