• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How to Transfer a Large Folder from One Server to Another

Status
Not open for further replies.

TruePaige

Diamond Member
Hello, ATOT Gurus.

I'm trying to migrate a website to a more capable server, and the website is used for image manipulation / hosting.

It has around ~150GB of images on it currently.

Here is what I'm trying to do...

I want to move the master folder that all the images are in to a new server with the following restriction:

Do not have root access to either server, and cannot install any software. Just have a standard LAMP stack to work with.

Any ideas as to the best way to move them?

edit: It's just a standard web hosting package pretty much, so I can only run things on it that you would be able to run on say DreamHost or 1and1. Trying to figure out the least painful thing to do.
 
On the source server, type:

rsync -essh --archive --delete --verbose --update /home/user1/source_dir/ target_host:/home/user1/target_dir/

Make a cron job out of it. Things should go faster since it'll update files.
 
If it's a move of hosts, just tar up the entire thing into one huge file, then scp it over. Make sure you do it data center to data center, so you'll be getting faster speeds then if you download it home first.
 
Status
Not open for further replies.
Back
Top