This documentation focuses on data transfers to/from HPC using SCP/SFTP mechanism. There are now other mechanisms using Open OnDemand and Globus. Please see the respective pages:
We recommend using WinSCP to transfer files to and from the cluster. To view their download page, visit here. After you download and install the application, it needs to be configured to connect to the cluster (either Turing or Wahab).
Go to File -> Site Manager -> New Site
Input your information. This only need to be done once.
You can click Login once you are finished.
SCP/SFTP command linux is very powerful and convenient, it is available by default on macOS and most of linux distribution.
scp
is cp
over ssh
protocol, it works almost like cp, here is a example:
Copy data from local to cluster:
scp file MIDAS_USERNAME@turing.hpc.odu.edu:
scp file MIDAS_USERNAME@wahab.hpc.odu.edu:
Copy data from cluster to local:
scp MIDAS_USERNAME@turing.hpc.odu.edu:file .
scp MIDAS_USERNAME@wahab.hpc.odu.edu:file .
When copying a directory, add -r
scp -r MIDAS_USERNAME@turing.hpc.odu.edu:dir .
scp -r dir MIDAS_USERNAME@wahab.hpc.odu.edu:
You can add additional path on either side of command, for example:
scp MIDAS_USERNAME@turing.hpc.odu.edu:~/dir/abcd .
scp ./data/abcd MIDAS_USERNAME@turing.hpc.odu.edu:/scratch-lustre/dir/abcd
sftp
command is useful when multiple file operation is needed.
Start sftp
sftp MIDAS_USERNAME@turing.hpc.odu.edu
sftp MIDAS_USERNAME@wahab.hpc.odu.edu
There are two path system in sftp, one is local path, and another is remote path. Most sftp command starts with l
means it works on local, none l
version means it works on remote
List local files
lls
Change local current directory
lcd path
List remote files
ls
Change remote current directory
cd path
Download a file
get filename
Download a directory
get -R directory_name
Upload a file
put filename
Upload load a directory
mkdir directory_name # sftp require directory to exist first
put -R directory_name
FileZilla supports SCP/SFTP on Windows, MacOS, and Linux platforms.
FileZilla offers a bundled version with additional "sponsored" software and an unbundled version (no extra stuff). For this reason, we recommend you to look into other alternatives before considering FileZilla. If the use of WinSCP or sftp command is not possible, then FileZilla is still a viable choice. Please read the following blog article for a helpful guidance to avoid installing the extraneous, unneeded software on your machine.
Pay close attention to the name of the downloaded file:
- this is an example of a Windows installer of the bundled version
FileZilla_3.48.1_win64_sponsored-setup.exe
- this is an example of a Windows installer of the a unbundled version
FileZilla_3.48.1_win64-setup.exe
Download the latest version for your OS here.
After you download and install the application, it needs to be configured to connect to the cluster (either Turing or Wahab).
Go to File -> Site Manager -> New Site
Input your information. This only need to be done once. Please select "Interactive" as Logon Type
You can click Connect once you are finished.
Go to Transfer Settings
Enable "Limit number of simultaneous connections" and set the number to "1"
Mass storage is meant for long-term storage of data that is not actively used for computation/analysis on HPC. Mass storage can be accessed from HPC login nodes as well as from user's desktop/laptop computers.
There are two types of allocations of mass storage:
Individual storage allocation comes automatically with access to HPC. Group storage allocation may be requested by emailing rcc@odu.edu with the following information:
/RC
is available on login node on Both Turing and Wahab cluster.
/RC/home/YOUR_USERNAME
for individual request/RC/group/YOUR_GROUP_NAME
for group requestSince
/RC
is meant to be a long-term (archival) storage, it is not made accessible on the HPC compute nodes. Researchers need to move the needed data manually (or using a script) to the scratch partition for processing via regular HPC jobs.
ts.odu.edu
domain, you should see a R:
drive under your Computer.\\research1.ts.odu.edu\RC
drive with the following steps:
Step 1: Navigate to Computer
Step 2: Click Map network drive
Step 3: Input drive information
Step 4: Click Finish
Step 5: Input your credentials
Step 1: Select Finder and use key ⌘-K
Step 2: Input drive information and click +
(you only need do this once)
Step 3: Select the drive and click connect
Step 4: Input your credentials