0

I want to use a program like rsync or scp to recursively transfer folders from one remote server to another on the shell. I connect from one server usually via sftp and the other via ftp, but I believe I can also ftp and ftp. I have the links to the desired directories. I tried a program like ftprush in windows, but it would connect to both servers, but wouldn't initiate the transfer. How can I do this?

Steven
  • 1
  • 3

1 Answers1

3

I am a fan of scp to copy things between servers (who would've thunk it...) (I really only use rsync as a backup tool) I've never tried copying between two remote hosts, but I don't see any reason it wouldn't work

scp -r user1@server1:/path/to/folder user2@server2:/path/to/copy/to

j-money
  • 2,382
  • I'm getting the following error ssh: Could not resolve hostname ftp: Temporary failure in name resolution. The FTP only server I can access via http. The SFTP one I cannot access via http (error 550) and when I post the url in filezilla it reverts to the home user directory, rather than the linked one. – Steven Feb 19 '19 at 10:12
  • what did you type exactly? – j-money Feb 19 '19 at 10:14
  • scp -r ftp://username:password@hosting:21/media/sdc1/user ftp://username:password@hosting:21/ – Steven Feb 19 '19 at 10:19
  • 1
    I'm not sure how you transformed user@server... to user:password@hosting – j-money Feb 19 '19 at 10:24
  • I do not have ssh server with password authentication to test, probably the syntax could be scp -r ssh://user:pwd@host .... – pa4080 Feb 20 '19 at 18:27
  • @pa4080 interesting, I've only ever seen it user@server:path. Guess it's true, you learn something new everyday :D – j-money Feb 20 '19 at 19:48
  • I just suppose, because this syntax works in some other cases :) @Steven, could you verify whether this works, please? – pa4080 Feb 20 '19 at 19:59