Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 666 Bytes

Archway.md

File metadata and controls

23 lines (20 loc) · 666 Bytes

Download latest snapshot (using the example of Akash)

Stop Akash service
systemctl stop archway.service

Remove old data in directory ~/.archway/data

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

Download snapshot

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

alt text

Start service and check logs

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