4

I am currently trying to migrate my website from one host to a newer one. What FTP client allows direct server to server transfer without me physically downloading the files to my computer.

Any other means of doing the same without the use of an FTP client? Or let me rephrase that. Is there a better way of doing server to server transfer of files?

rzlines
  • 7,488
  • 17
  • 65
  • 90

2 Answers2

3

Look for a client that supports "FXP". If supported by the server, this allows FTP-to-FTP connections without passing through the client.

Ignacio Vazquez-Abrams
  • 111,361
  • 10
  • 201
  • 247
2

ssh from one server to the other and use scp

on windows you can use putty to connect to the server you want to copy from like so: http://www.jfitz.com/tips/putty_config.html

then typing:


ssh username@host_ip_to_be_copied_to
#enter password when prompted
scp username@host_ip_to_be_copied_from:path_to_be_copied_from
#enter password when prompted
#wait until complete

done

RobotHumans
  • 5,904
  • 1
  • 19
  • 25