thomas...@gmail.com
unread,Jan 19, 2015, 7:10:34 PM1/19/15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to maxs...@googlegroups.com
My maxscale setup seems to be operating just fine as long as I do not include a default database when connecting.
For example, if I connect with the following:
mysql -h<hostname> -u<username> -p
I can connect just fine through maxscale (after putting in my password at the prompt)
However, If I add a database name like so:
mysql -h<hostname> -u<username> -p -D<database>
I get the following error:
ERROR 1045 (28000): Access denied for user '<user>'@'<myip>' (using password: YES) to database '<database>'
and in the maxscale logs I get the following:
RW Split Router: Unable to load database grant information, MaxScale authentication will proceed without including database permissions. To correct this GRANT select permission on msql.db to the user <user>.
msql.db looks like a typo for mysql.db, but just in case I added select permission to both mysql.user and mysql.db for user <user> to no avail. Also none of the users in mysql.user filter off host (all use %).
Is this a configuration issue? a bug? Is there a workaround?
Thank you for your time.