• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Migration from cPanel

mirkob

New Pleskian
I've a big buggy very stressed problem.

Hi, my name is mirko and i've a problem..
i want to migrate all my domains, emails, files, databases, configs ecc.. from cPanel to Plesk..

I've started the migration tool but it is completed with some error..

this is a short of the text:
Code:
ERROR:	()	Failed to execute backup of mysql database 'packcom_bake474'


ERROR:	()	Failed to pack files sqldump_1401052240 in /var/cache/20140105224003585//domains/1611pack.com/databases/packcom_bake474 [ 15615696896 bytes free of 26422343680 bytes total on mount point 0]


ERROR:	()	Failed to execute backup of mysql database 'acefight_xnova'


ERROR:	()	Failed to pack files sqldump_1401052240 in /var/cache/20140105224003585//domains/acefighter.net/databases/acefight_xnova [ 15615750144 bytes free of 26422343680 bytes total on mount point 0]


ERROR:	()	Failed to execute backup of mysql database 'acefight_suport3'

Now.. how i can resolve this?
I've commented the line "$domainFromSubdomainNode->addChild( $shostingNode );" on the transformer.pm ..

Please help me.
Thank you for any Answers.
Mirko.
 
Hi, you can find more detailed message in /usr/local/psa/PMM/logs/migration-xxx/backup.log, however these errors should not be fatal and only indicate that mysqldump failed to dump those DBs. There can be numerous possible reasons of that, maybe log has messages indicating reason.

If there were just few errors, you can manually dump these DBs in cPanel and than import them in Plesk - create empty DB and import via phpMyAdmin (DB Manager)
 
You can try to apply following patch. Create backup of original file with

# cp /usr/local/psa/PMM/agents/shared/Db/ShellBackend.pm /usr/local/psa/PMM/agents/shared/Db/ShellBackend.pm.orig

and apply following patch:

# diff -ub /usr/local/psa/PMM/agents/shared/Db/ShellBackend.pm{,.orig}
--- /usr/local/psa/PMM/agents/shared/Db/ShellBackend.pm 2013-11-21 08:05:45.997135834 -0600
+++ /usr/local/psa/PMM/agents/shared/Db/ShellBackend.pm.orig 2013-11-21 08:04:47.040428762 -0600
@@ -94,7 +94,7 @@

sub getFileToRemove {
my ($self) = @_;
- return @{$self->{fileToRemove}} if defined $self->{fileToRemove};
+ return @{$self->{fileToRemove}};
}

1;

It should help. (RT 1784941)
 
Back
Top