• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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