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.
