Server To Server Data Transfer

sujitjadhav

Newbie
Joined
Aug 18, 2011
Messages
9
Reaction score
0
Anybody please tell :-

I have 100Gb Backup File as .tar.gz on old server
I want to Transfer this Backup File to new server
I have only Cpanel Control on Both servers.

----

So Please Tell me Process of Transfer data old server to new server one.
Such as Softwares, Scripts and Full Information Please anybody Share. I and my many webmaster friend need it.
 
If you need a free transfer hostwinds does this for ALL clients
 
download rapidleech and install on the server where you want to download the new file and just open it in the web browser and put your link from other server and click download ;)
 
my company admin not upload backup.
and bro rapidleech get Timeup limit.
plz any other way thenshare please
 
If both servers allow SSH, you can SSH into the one you want to move to (the one without the files) then SSH from that console into the old server and do a GET request.
 
Both Server have shell (SSH) activated. please tell me process.
 
Server #1: The server you've had for awhile and all the data is on (the backup)
Server #2: The new server that you want it on.

1) Using putty ( http://www.chiark.greenend.org.uk/~sgtatham/putty/ ) you should SSH into Server #2.
2) Use the change directory command (cd) to go to where you want the backup to go
3) ssh IPaddressOFserver1 cat "<" /dir/to/backup/file.tar.gz > nameItWillBeCopiedAs.tar.gz
 
Zapdos Ultimate Thanks to U. Thank you very much...............................
 
_Chip_ bro php time out hence not work its interrupter.
 
PHP:
<?php
define('BUFSIZ', 4095);
$url = 'http://uroldserver.com/backup.zip';
$rfile = fopen($url, 'r');
$lfile = fopen(basename($url), 'w');
while(!feof($rfile))
fwrite($lfile, fread($rfile, BUFSIZ), BUFSIZ);
fclose($rfile);
fclose($lfile);
?>
 
3) ssh IPaddressOFserver1 cat "<" /dir/to/backup/file.tar.gz > nameItWillBeCopiedAs.tar.gz

Personally I would use the scp command rather than ssh and cat.

If the transfer breaks half way through, you can you rsync to pick up where you left off.
 
If your servers runs on linux get yourself WinSCP and connect to your server using your login and pass. With use of that software you will be able to transfer the file easily by simply dragging and dropping the file from remote to local location.
 
Back
Top