Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 777 Bytes

Sentinel.md

File metadata and controls

28 lines (23 loc) · 777 Bytes

Install Aria2

sudo apt-get install wget -y

Download latest snapshot (using the example of Sentinel)

Stop Sentinel service
systemctl stop sentinel.service

Remove old data in directory ~/.sentinelhub/data/

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

Download snapshot

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

alt text

Start service and check logs

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