Giving users access via wildcard
MySQL expert Scott Noyes explains how to grant users access from any location using the 'wildcard.'
Try granting that user some privileges.
If that doesn't solve the problem, check the user's host. Using Query Browser or the command line client, while connected as root, issue the following command:
SELECT user, host FROM mysql.user WHERE user = 'theUserYouCreated';
Check the `host` field. If it is set to the wildcard "%," your user should be able to connect from anywhere. If it is set to "localhost," your user can only connect from the server on which MySQL is running. Use the GRANT statement to give user access from "%."
Dig Deeper on Linux servers
Have a question for an expert?
Please add a title for your question
Get answers from a TechTarget expert on whatever's puzzling you.
Meet all of our Data Center experts
View all Data Center questions and answers
Start the conversation
0 comments