Return to Snippet

Revision: 19088
at October 15, 2009 17:39 by jmiller


Initial Code
STEPS:
1) ssh into site1
- ssh [email protected]
- 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 [email protected]
- enter password
- “cd domains/site2.com”
- “rm -r html”
- “wget http://site1.com/filesbackup.tar.gz”
- “tar xvfz filesbackup.tar.gz”

Initial URL
http://thriveline.com/blog/2009/10/copying-a-sites-files-from-one-host-to-another/

Initial Description
Terms:
Site1 = http://site1.com/
Site2 = http://site2.com/

Site1Path = /home/user1045/domains/site1.com/html
Site2Path = /home/user9938/domains/site2.com/html

Initial Title
Copy a site's files from one host to another

Initial Tags


Initial Language
Bash