File Transfer

After obtaining an account one of the things that you may wish to do is get data transferred to or from the Bayes cluster. Two of the most widely available tools for secure file transfer are SCP (Secure Copy) and SFTP (Secure File Transfer Protocol) which utilize the SSH protocol to implement security. While SCP is a simple, non-interactive command line tool, it is often a more suitable choice when setting up unattended file transfers using scripts. Alternatively, SFTP is an interactive tool which offers features like remote file listing, copying, deleting, directory creation, etc.

  • For using the SCP:
    • Copy file (file_name.file) from local to the cluster: scp /path_of_local/file_name.file user_name@hpc.uicstat.com:/path_of_remote/file_name.file
    • Get file (file_name.file) from the cluster to local: scp user_name@hpc.uicstat.com:/path_of_remote/file_name.file /path_of_local/file_name.file
  • For using the SFTP:
    • Copy file (file_name.file) from local to the cluster:
    sftp user_name@hpc.uicstat.com
    put /path_of_remote/file_name.file
    
    • Get file (file_name.file) from the cluster to local:
    sftp user_name@hpc.uicstat.com
    get /path_of_remote/file_name.file