Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 639 Bytes

Akash.md

File metadata and controls

23 lines (20 loc) · 639 Bytes

Download latest snapshot (using the example of Akash)

Stop Akash service
systemctl stop akash.service

Remove old data in directory ~/.akash/data

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

Download snapshot

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

alt text

Start service and check logs

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