UAF-RCS Storage Documentation
  • Available RCS Storage
  • CENTER1 Lustre Performance / Striping Guide
  • Syncing with $ARCHIVE
  • Staging data back from tape on $ARCHIVE
Powered by GitBook
On this page
  • $CENTER1 <-> $ARCHIVE
  • sftp a file
  • scp a sub-directory
  • rsync via ssh

Was this helpful?

Syncing with $ARCHIVE

A few examples of backing up data to $ARCHIVE

$CENTER1 <-> $ARCHIVE

The volatile, high performance scratch filesystem, $CENTER1, is not intended for permanent storage. Users are responsible for backing up any critical data either to their own storage, or to $ARCHIVE. The two methods recommended to backup files are either sftp, scp, or rsync via ssh. Here are examples of using these commands.

To simplify these processes, set up SSH keys for easier authentication onto bigdipper.alaska.edu first.

sftp a file

Login to a chinook login node.
$ cd $CENTER1/local-subdir
$ sftp bigdipper.alaska.edu
> cd /archive/PROJECT/username/remote-subdir
> put file1
> quit

scp a sub-directory

Login to a chinook login node.
$ scp -rp $CENTER1/local-subdir \
bigdipper.alaska.edu:/archive/PROJECT/$USER/remote-subdir

rsync via ssh

Login to a chinook login node.
$ rsync -av --rsh=ssh $CENTER1/local-subdir/ \
bigdipper.alsaka.edu:/archive/PROJECT/$USER/remote-subdir/

All of these transfers can be automated and executed as a batch job in the chinook transfer queue, or as a cron job on a chinook login node.

PreviousCENTER1 Lustre Performance / Striping GuideNextStaging data back from tape on $ARCHIVE

Last updated 5 years ago

Was this helpful?

Note the trailing "/" in the path names. They are important. For more information, see the .

rsync man page