Easiest way to first create cloud user at the destination server and then import the backup
GRANT ALL ON cloud.* to cloud@`localhost` identified by 'complex_password '; GRANT ALL ON cloud.* to cloud@`%` identified by 'complex_password'; GRANT ALL ON cloud_usage.* to cloud@`localhost`; GRANT ALL ON cloud_usage.* to cloud@`%`; GRANT process ON *.* TO cloud@`localhost`; GRANT process ON *.* TO cloud@`%`; FLUSH PRIVILEGES;
