While working with the MySQL Enterprise Dashboard I found a small
problem when trying to use the Query Analyzer. The test server I
am running on had a user used by the dev team that had the
following privileges:
GRANT USAGE ON *.* TO 'test_user'@'10.18.%' IDENTIFIED BY
PASSWORD 'HASHNOTGIVEN';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE TEMPORARY TABLES,
LOCK TABLES, EXECUTE, SHOW VIEW, TRIGGER ON `canoe`.* TO
'test_user'@'10.18.%';
GRANT SELECT on `mysql`.`proc` TO 'test_user'@'10.18.%';
I the agent running on this server is
mysqlmonitoragent-2.1.0.1093 and the proxy has been set to
receive connections on the default port, 6446. When I try to
connect I received the following error:
shell> mysql -utest_user -p --host=m120649.ningops.com
--port=6446
Enter password:
ERROR 1045 (28000): Access denied for user
'test_user'@'localhost' (using password: YES)
I …
[Read more]