GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Server to Server Move? (https://gfy.com/showthread.php?t=137576)

Pipecrew 05-27-2003 06:11 PM

Server to Server Move?
 
I saw someone mention this earlier on GFY about how they bought content and wanted to download it directly to there server..

So if I had a ton of content on one server and wanted to move it to another server, how is that done?

-=HOAX=- 05-27-2003 06:16 PM

couldn't you just tar it all up and use a tftp get/put type thang...

MediumPimpin 05-27-2003 06:29 PM

Would help to know what operating systems you are using, sounds like it may be easier just to slave it over?

pantymaniac 05-27-2003 06:31 PM

if its in ftp --> you can use flashfxp ftp -- to ftp

http://www.flashfxp.com/

Captain 05-27-2003 06:32 PM

A few choices:

This will not compress, but will be faster if you have fast drives, and a fast internet connection.
All of this is done from a shell, probably over SSH

Old host:
tar -cf (tar file) (directory to tar)

New host:
cd (wherever you want to save to)
ftp (old host)
enter your user/pass
get (tar file)
quit
tar -xf (tar file)

Or perhaps if you want compression, change it to -czf and -xvf instead of -cf and -xf

Pipecrew 05-27-2003 06:35 PM

Quote:

Originally posted by Captain
A few choices:

This will not compress, but will be faster if you have fast drives, and a fast internet connection.
All of this is done from a shell, probably over SSH

Old host:
tar -cf (tar file) (directory to tar)

New host:
cd (wherever you want to save to)
ftp (old host)
enter your user/pass
get (tar file)
quit
tar -xf (tar file)

Or perhaps if you want compression, change it to -czf and -xvf instead of -cf and -xf

Thanks

Captain 05-27-2003 06:36 PM

Quote:

Originally posted by Pipecrew


Thanks

Anytime

FrankWhite 05-27-2003 06:37 PM

ttcp -r -p 30666 | tar xvpf - -C www.pipecrew.com (on the receiving side, which means attach to port 30666 and
pipe all output to tar, also had to create the destination directory)

tar -cf - -C www.pipecrew.com . | ttcp -t -p 30666 newpipecrewserver.com

(this is on the sender side - means tar up the dir and pipe to ttcp, then ttcp is told to connect to port 30666 and...


this will move it from one server to another with all the permissions :thumbsup

Pipecrew 05-27-2003 06:39 PM

Quote:

Originally posted by Doomed
ttcp -r -p 30666 | tar xvpf - -C www.pipecrew.com (on the receiving side, which means attach to port 30666 and
pipe all output to tar, also had to create the destination directory)

tar -cf - -C www.pipecrew.com . | ttcp -t -p 30666 newpipecrewserver.com

(this is on the sender side - means tar up the dir and pipe to ttcp, then ttcp is told to connect to port 30666 and...


this will move it from one server to another with all the permissions :thumbsup

cool, I am not the best with this shit, I will have my technically inclined friends look this thread over :)

FrankWhite 05-27-2003 06:42 PM

Quote:

Originally posted by Pipecrew


cool, I am not the best with this shit, I will have my technically inclined friends look this thread over :)


if you got technically inclined friends they should know this without looking through this thread


All times are GMT -7. The time now is 10:42 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123