SOLVED The cpconftool Script - transfer config backups

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
Hello @jonh,

This is noted under the "Transfer A Configuration" section of the document you linked:

Transfer a configuration
To transfer a configuration, perform the following steps:
  1. Perform the backup process for the desired configuration on the origin server.
  2. Copy the .tar.gz file that the backup process creates from the origin server to the destination server.
  3. Perform the restoration process for the desired configuration on the destination server.
To copy the .tar.gz file, you could use the "sftp" command. EX:

Code:
sftp root@remote-server-ip
cd /path/to/upload/
put /path/to/tar.gz
Thank you.