When running the mysqldbcompare command as mentioned in the previous post you may get the following error:
ERROR: Query failed. 1142: SELECT command denied to user 'user'@'10.10.10.10' for table 'proc'
Essentially the user ‘user’ doesn’t have the correct permissions to ‘SELECT’ from the database. To fix update permissions from within MySQL:
grant all privileges on database.* to 'root'@'10.10.10.10' identified by 'password';
flush privileges;
Leave a Comment