Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm posting something I just figured out that might help other users. I was trying to access a mysql database available through MAMP (v2.1.1) from the command-line as so:

mysql -uroot -proot dbname

and through python using MySQLdb:

db = MySQLdb.connect(host="localhost", user="root", passwd="root", db="dbname")

and kept getting

OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: YES)")

I tried different suggestions here, including playing with the user privileges, flush privileges, etc, to no avail.

Interestingly enough, I was able to connect through phpMyAdmin and the credentials I was using seemed to be present and sufficient.

share|improve this question
I figured that "mysql" was pointing to "/usr/local/mysql/bin/mysql" instead of "/Applications/MAMP/Library/bin/mysql". Make sure you check you're using the right executable!<br><br> In case you're using django, to make your mysql connection point to MAMP you need to set your host to "/Applications/MAMP/tmp/mysql/mysql.sock", according to tom.londondroids.com/2012/05/…; Hope this helped someone! – isthisthat Jan 20 at 23:16

closed as too localized by trojanfoe, FreshPrinceOfSO, hjpotter92, Mario, RolandoMySQLDBA Jan 20 at 22:30

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.