need urgent help in moving a site

moobymoo

Member
Sep 7, 2007
17
0
51
my one of music site is using 120GB of 160gb hard disk.i cannot make backup of that account as well.i need to move that site to new server..my old host used some commands in ssh through which my whole site moved from one server to second server..i need to know if someone had experience like that and would like to help me out in it :mad::mad:


Thanks
kind regards
 

syn74x

BANNED
Sep 23, 2007
3
0
51
You can't back it up because you don't have enough space to, just ask your server host to put you a extra HD in your current Server, copy it over that way :)
 

MMarko

Well-Known Member
Apr 18, 2005
316
0
166
you can copy this with scp

I'd suggest you that you set ssh protocol ver 1 because it is much faster when doing tasks like copying.
 

madaboutlinux

Well-Known Member
Jan 24, 2005
1,051
2
168
Earth
my one of music site is using 120GB of 160gb hard disk.i cannot make backup of that account as well.i need to move that site to new server..my old host used some commands in ssh through which my whole site moved from one server to second server..i need to know if someone had experience like that and would like to help me out in it :mad::mad:

Thanks
kind regards
You can use rsync to copy your complete website from the old server to new one. But you should have root access to both. Below is the command:

/usr/bin/rsync -vrplogDtH -e "ssh" /path/to/source/directory root@DestinationIP:/path/to/destination/directory

You should execute the above command from the source server and for more information for the options used, you can type:

man rsync

at command prompt. Advantage of rsync over scp is that, even if the copy fails for some reason, the next time you start, it will start from where you have left the previous time and not all over again.
 
Last edited:

moobymoo

Member
Sep 7, 2007
17
0
51
i would like to go for ssh..is there any special commands or cron which can transfer my site to new host