Skip to main content
We are aware of an issue after updating to cPanel versions 11.110.0.65, 11.126.0.21, or 11.128.0.11, some cPanel plugins or features are no longer functioning properly including WP Toolkit. Please see the following article for more information and updates:
Update to latest cPanel 110, 126, or 128 versions removes "addonfeatures" directory.

how transfer TABLES MySQL from server 1 to server 2? (both with cPanel)

Comments

3 comments

  • cPanelMichael
    Hello :) You can use the "mysqldump" utility to backup specific tables with a command such as: mysqldump database_name table_name table2_name table3_name > /path/to/database_name.sql
    You can then upload the SQL file to the destination server and restore it via: mysql database_name < /path/to/database_name.sql
    Note: The above commands assume you are logged in as "root" to both machines. Thank you.
    0
  • 000
    [quote="cPanelMichael, post: 1492401">You can use the "mysqldump"
    Thanks master. Then no exist some command to transfer DIRECTLY and in format REMOTE from S1 to S2 ??? (S-erver) Some as: ssh root@S1 mysql "SELECT * FROM table X and INSERT INTO SERVER2"... This option/command no exist? Regards
    0
  • cPanelMichael
    There are two separate MySQL servers running, so that would not work. I recommend using SCP or SFTP to upload the database dump to the destination server. Thank you.
    0

Please sign in to leave a comment.