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 -
Start service and check logs
systemctl start akash.service; \
journalctl -u akash.service -f --no-hostname