1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Need help as how to shift large website

Discussion in 'Site & Server Administration' started by forumrating, Nov 1, 2013.

  1. #1
    Seeking for help how to shift large website from cpanel to cpanel including database, emails and root folder files. Its about 8gb data
     
    forumrating, Nov 1, 2013 IP
  2. Nigel Lew

    Nigel Lew Notable Member

    Messages:
    4,642
    Likes Received:
    405
    Best Answers:
    21
    Trophy Points:
    295
    #2
    Nigel Lew, Nov 1, 2013 IP
  3. yize

    yize Active Member

    Messages:
    107
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #3
    well cpanel does have a good backup module, but at that size, you are going to need help from the hosting company. I would think either side might stop the transfer of data since it's that large.
     
    yize, Nov 1, 2013 IP
  4. RHS-Chris

    RHS-Chris Well-Known Member

    Messages:
    1,007
    Likes Received:
    35
    Best Answers:
    10
    Trophy Points:
    150
    #4
    Hello there,

    Do you have SSH access on both servers?

    Regards,
    Chris
     
    RHS-Chris, Nov 1, 2013 IP
  5. kingploy

    kingploy Active Member

    Messages:
    149
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #5
    You cannot use a full backup to restore your site via the cPanel interface. The file must be downloaded and decompressed prior to restoration. Once the file has been decompressed, you will be able to upload and restore individual pieces of your website contained within the full backup.
     
    kingploy, Nov 1, 2013 IP
  6. forumrating

    forumrating Notable Member

    Messages:
    6,565
    Likes Received:
    347
    Best Answers:
    0
    Trophy Points:
    275
    #6
    Do not have ssh,i need to do backup of 7gb of emails which is challenging. as it needs to b done in weekends only, finding way out to sort this real quick.
     
    forumrating, Nov 2, 2013 IP
  7. RHS-Chris

    RHS-Chris Well-Known Member

    Messages:
    1,007
    Likes Received:
    35
    Best Answers:
    10
    Trophy Points:
    150
    #7
    Hello there,

    I think the best option is to create a full cPanel backup (as mentioned prior) on your current server, then move that backup to a web accessible folder (public_html). Let your new host know where it is, they can download it directly to the server your site is on, and then restore it from there. Any decent host should be helping you with moving your site.

    Regards,
    Chris
     
    RHS-Chris, Nov 2, 2013 IP
  8. matt_62

    matt_62 Prominent Member

    Messages:
    1,827
    Likes Received:
    515
    Best Answers:
    14
    Trophy Points:
    350
    #8
    noone said that he could. However, the admin at the new hosting company can restore this for him via the whm interface.

    To make it easy for the hosting company, upload the backup file to your new account. Using the cpanel built in ftp backup uption can save it direct to your new host, they can then easily restore it. I prefer this method over having the host "grab" it via the whm interface.

    8gb is not something I have worked with, but I have had no issues with sites that were 5gb using this method.
     
    matt_62, Nov 3, 2013 IP
  9. Abiolas Gabriel

    Abiolas Gabriel Member

    Messages:
    73
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #9
    since its large,you need to contact the host company bro,they will do that for you
     
    Abiolas Gabriel, Nov 4, 2013 IP
  10. sahabcse

    sahabcse Well-Known Member

    Messages:
    272
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    140
    #10
    Steps given below for manual transfer
    1) Creating a temporary directory using the mkdir command
    mkdir /home/user-temp
    2) Creating a compressed backup of public_html
    tar cvzf /home/user-temp/user-backup.tar.gz /home/user/public_html
    3) Creating compressed backups of logs
    tar -cvzf /home/user-temp/user-logs.tar.gz /usr/local/apache/domlogs/example.com
    mv /usr/local/apache/domlogs/example.com /home/user-temp/
    4) Manually transferring the compressed backups using the scp command
    scp -r /home/user-temp/user-logs.tar.gz :/home/temp/
    scp -r /home/user-temp/user-backup.tar.gz :/home/temp/
    5) Extracting the compressed backups
    tar -xvzf /home/temp/user-backup.tar.gz /home/user/
    tar -xvzf /home/temp/user-logs.tar.gz /usr/local/apache/domlogs/
    Once you have completed the transfer and restored the backups you have created, you should have successfully moved the account.
     
    sahabcse, Nov 6, 2013 IP