Skip to main content

Copying an account with a large database..

Comments

3 comments

  • Infopro
    You might try doing a Full Account Backup and then move it to the new server manually. And then restore it from there via root.
    0
  • talk2prakash
    Try dumping all the database in a single file .sql and rsync this file to your destination and restore the database. Dumping: # mysqldump --all-database > alldbbackups.sql At the destination end #mysql < alldbbackups.sql
    0
  • cPanelMichael
    Hello :) You can select the option to skip the account databases when copying the account. Then, create a backup of the database on the source server via: mysqldump database_name > /home/database_name.sql
    Then, manually transfer that .sql file to the destination server and restore it to the account via: mysql database_name < /path/to/database_name.sql
    Thank you.
    0

Please sign in to leave a comment.