Anybody knows how to transfer Vb forums from 1 shared server to another?

Discussion in 'Site & Server Administration' started by topdaytrader, Sep 6, 2007.

  1. #1
    I'm using vBulletin Version 3.6.0. Anybody knows the steps to transfer from 1 shared server to another w/o losing the database?
     
    topdaytrader, Sep 6, 2007 IP
  2. Jeewhizz

    Jeewhizz Peon

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    1) Close the forum on server1 to avoid posts being added etc
    2) copy the files across from server 1 to server 2
    3) copy the DB across using phpmyadmin or similar
    4) edit the config files on server2 to update the DB username/pass/location
    5) Login to forum on server 2 and re-open the forum

    That's usually it...
     
    Jeewhizz, Sep 6, 2007 IP
  3. topdaytrader

    topdaytrader Active Member

    Messages:
    933
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #3
    I appreciated your help. But my DB only allows import up to 8mb, what should I do?
     
    topdaytrader, Sep 6, 2007 IP
  4. InFloW

    InFloW Peon

    Messages:
    1,488
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    0
    #4
    use SSH to do it assuming you have SSH access. If you do not ask your host to do the import.
     
    InFloW, Sep 6, 2007 IP
  5. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #5
    Repair and Optimize database, then on SSH...

    su root
    Give password.

    mysqldump -uroot -pPASSWORD DATABASENAME > /full_path/back-up.sql

    Then on new server...

    wget URL to back-up.sql
    then
    mysql -uroot -pPASSWORD DATABASENAME < /full_path/back-up.sql -f

    Of course you should always have back-up copies on your computer!!!

    Once it's set-up, on the old forums, link to the IP address URL and update the DNS records.
     
    Nintendo, Sep 6, 2007 IP
  6. InFloW

    InFloW Peon

    Messages:
    1,488
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Something I forgot to mention you can set a low TTL in the dns zone and give that a few days. That way switch over to the new server will not take as long on the DNS side of things.
     
    InFloW, Sep 6, 2007 IP