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)
-   -   How to move a site to another server? (https://gfy.com/showthread.php?t=451253)

Calvinguy 04-02-2005 03:26 AM

How to move a site to another server?
 
I have around 200 GB I need to move to another server.

I know cuteFTP pro can make a site-to-site transfer but only with a few supported ftp server programs.

Any other methods?

jovigirl 04-02-2005 03:34 AM

you need to do it via ssh more or less like this

login to the shell
compress the directories using tar and gzip
then split the tarball
and use wget to transfer it server to server

you could get it done within a few hours if your servers are uncapped

200 gigs with cuteftp might take forever

FrankWhite 04-02-2005 03:35 AM

you can use netcat or ttcp.


tar -cpvf - * | nc ipofyournewserver 5000
nc -l -p 5000 | tar -xpvf -

VideoJ 04-02-2005 03:49 AM

yet another option: scp. if you have ssh on both servers

on the destination server
scp -rp [email protected]:from todir

com 04-02-2005 04:05 AM

depending on the network you may or may not want to consider getting the drive physically replicated ;)

Calvinguy 04-02-2005 04:30 AM

Quote:

Originally Posted by VideoJ
yet another option: scp. if you have ssh on both servers

on the destination server
scp -rp [email protected]:from todir

This works great and is very fast...

Johny Traffic 04-02-2005 04:54 AM

When I move servers I always get the new host to copy it over, may be worth a go?

Calvinguy 04-02-2005 04:59 AM

Quote:

Originally Posted by Johny Traffic
When I move servers I always get the new host to copy it over, may be worth a go?

I already started using the above method. The ETA is around 4-5 hours. I think that is very reasonable.

Barefootsies 04-02-2005 08:36 AM

Quote:

Originally Posted by jovigirl
you need to do it via ssh more or less like this

login to the shell
compress the directories using tar and gzip
then split the tarball
and use wget to transfer it server to server

you could get it done within a few hours if your servers are uncapped

200 gigs with cuteftp might take forever

That's about right.

:thumbsup


All times are GMT -7. The time now is 06:24 PM.

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