• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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