• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Move Mysql to new server

E

ecja

Guest
Hello again,
am trying to move a database using PhpMyAdmin but getting error:


MySQL said: Documentation
#1044 - Access denied for user 'usr559f752d5d32'@'%' to database 'mysql14470c4f268a94bad321a4096a7'

How do grant Access to the user?


JC
 
To grant access you must have root/admin permissions to the mysql server

Code:
grant ALL on mysql14470c4f268a94bad321a4096a7.* to  'usr559f752d5d32'@'%' identified by 'PASSWORD HERE';
FLUSH PRIVILEGES;
 
Back
Top