This is a test version of Biostars. For the public version, visit https://www.biostars.org.
transfer data from cluster to cluster

Heys,

I'm working with two ssh clusters and I want to transfer some data from one to another. I could download it to my pc and then to the other cluster, but is more than 100 GB and I imagined there would be an easy way to transfer the data between both clusters.

I've been trying to look for info in internet, but I didn't fully got it. If anybody could help me would be great!

Thanks in advance!

cluster data

2 answers

Anything wrong with just rsync it from A to B directly?

Something like this, assuming only the files to be transferred were in the current directory on the source cluster:

rsync --progress ./* username@servername:/path/to/destination

Thank you very much! Your advice worked and was really useful to me! I appreciate it a lo!

thanks for your answer too! I used ATpoint's advice but this post explains something similar, thanks!

Log in to answer this question.