Start a conversation

Copy files from server to server using SCP

Often times with a VPS or Dedicated Server you will need the ability to copy a single file or even an entire directory to another server.  You can use FTP just like you normally would when uploading files to the server, but you can go one step better with SCP (Secure Copy Program).

If you wanted to copy a single file from one server to another server you issue the following command;

SCP myfile.tar root@newserverip:/your/directory/

If you wanted to copy an entire folder you can run this command;

SCP -r my folder root@newserverip:/your/directory/

With SCP you will be asked for the password to the new server (unless you've already setup authentication keys).  You can also request files TO a server from the destination server.  As always, the simple command from the shell is "man scp" and it'll bring up the entire manual with the various options you can use such as changing ports to shell in under etc.

Shell/Telnet must be enabled on the server in order to use SCP.


Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Support-Agent

  2. Posted
  3. Updated

Comments