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 myfolder 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 requst files TO a server from the destination server. As always, the simple command from 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.

  • 2 Users Found This Useful
Was this answer helpful?

Related Articles

Editing the .htaccess file.

Many Wordpress blogs use redirects to provide easy links to other sites, such as affiliate...

How many emails can I send per hour?

Revenueserver Host allows you to send up to 250 emails per hour, we do this to prevent spam and...

Methods To Reduce WordPress CPU Usage

CPU Usage- What is it? The usage that a system’s central processing unit incurs is referred to...