Copy or Transfer Files Between Two Linux Servers Using SCP
January 27, 2009 • 2 min read
The other day we ran into a good problem that our site has grown and we are in need of a new server. So we ordered the server and now we need to transfer all the files from the old server to the new one. But rather than downloading all the files to our local machines then re-uploading them to the new server, we’re going to show you how you can skip the middle man and transfer files from server to server.
The only requirements is that you need to have SSH access to both servers.
We’re going to be using the Linux command scp
which stands for secure copy. (see this page for a complete listing of all the available options for scp
)
We’re going to be using the following options:
r
= recursively copy entire directoriesC
= compression enablep
= preserves modification times, access times, and modes from the original file
# To transfer all the files in the httpdocs directory to a folder on the remote machine
scp -rpC /var/www/httpdocs/* remote_user@remote_domain.com:/var/www/httpdocs
# Transfer only PHP files
scp -rpC /var/www/httpdocs/*.php remote_user@remote_domain.com:/var/www/httpdocs
Also, if you’re going to transfer a lot of data between the webservers, you probably want to add the nohup
command too. nohup
runs a command even if the session is disconnected or the user logs out. Another bit you can add is trailing ampersand (&) to the end the command to launch it in the background and get your command prompt back right away.
nohup scp -rpC /var/www/httpdocs/* remote_user@remote_domain.com:/var/www/httpdocs &
Hope this helps someone as much as it did me today.
Update
Checkout Sync Files Between Servers using rsync for another option to coping/transferring files.