• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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