/ Published in: Bash
URL: http://thriveline.com/blog/2009/10/copying-a-sites-files-from-one-host-to-another/
Terms: Site1 = http://site1.com/ Site2 = http://site2.com/
Site1Path = /home/user1045/domains/site1.com/html Site2Path = /home/user9938/domains/site2.com/html
Expand |
Embed | Plain Text
STEPS: 1) ssh into site1 - ssh serveradmin@site1.com - enter password - “cd domains/site1.com” - “tar czf filesbackup.tar.gz html” - “mv filesbackup.tar.gz html” 2) ssh into site2 and download files from site1 - ssh serveradmin@site2.com - enter password - “cd domains/site2.com” - “rm -r html” - “wget http://site1.com/filesbackup.tar.gz” - “tar xvfz filesbackup.tar.gz”
Comments
Subscribe to comments
You need to login to post a comment.

If you're able to ssh into both servers, then scp is simpler:
If you're worried about bandwidth, then use tar z through a ssh pipe: