...
Code Block |
---|
Hi Jan, In my home directory on carver, there is a script called doDownloads.sh. This script is what needs to be run. Right now it runs on cvrsvc03. It sleeps for 24 hours, then runs a script called downloadSnapshot.sh in the same location. Best, Matt |
...
|
...
Direct upload of DB snapshot from RCF
Code Block |
---|
assuming you have curl installed, here is a safe one-liner to
download snapshots :
curl -s --retry 60 --retry-delay 60 http://www.star.bnl.gov/dsfactory/
--output snapshot.tgz
It will automatically retry 503 errors 60 times, waiting 60 seconds
between attempts. Should be safe enough to add it to VMs directly..
"-s" means silent => no output at all. You may want to remove this
switch while you test..
|