I'm creating a script that can be deployed to multiple administrators who would be able to run it with their own credentials.

I'm getting an Access Denied error from mysql, however. It seems to think that I'm not passing a username to the MySQL command:

Using this script:

set dbUser = "myusername"
set dbPass = "mypassword"
mysql --username=$dbUser --password=$dbPass --database="mydbname" -e "SELECT * FROM sometable"

ERROR 1044 (42000): Access denied for user ''@'localhost' to database

Strangely, if I type the MySQL username and password directly into the MySQL command and run that in a shell script it works fine.

mysql --username="myusername"--password="mypass" --database="mydbname" -e "SELECT * FROM sometable"
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

For bash... don't you want -


dbUser=myusername
dbPass=mypassword
mysql --username=$dbUser --password=$dbPass --database="mydbname" -e "SELECT * FROM sometable"

link|improve this answer
That's embarrassing on my part, was indeed the problem! Thanks for spotting that – sbook Mar 25 '11 at 16:51
it's a good idea to get in the habit of always quoting variables, unless you specifically want the side effects of omitting the quotes: mysql --username="$dbUser" --password="$dbPass" ... – glenn jackman Mar 25 '11 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.