Stop Osmosis service
systemctl stop osmosis.service
Remove old data in directory ~/.osmosisd/data
rm -rf ~/.osmosisd/data; \
mkdir -p ~/.osmosisd/data; \
cd ~/.osmosisd/data
Download snapshot
SNAP_NAME=$(curl -s http://135.181.60.250:5888/osmosis/ | egrep -o ">osmosis.*tar" | tr -d ">"); \
wget -O - http://135.181.60.250:5888/osmosis/${SNAP_NAME} | tar xf -
Start service and check logs
systemctl start osmosis.service; \
journalctl -u osmosis.service -f --no-hostname