Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Python 2.7 on OSX Lion and can't connect to a remote SQL Db on Python. I get the following error:

Traceback (most recent call last):
File "connectDB.py", line 39, in <module>
main()
File "connectDB.py", line 16, in main
db = MySQLdb.connect(HOST, USER, PASSWORD, DBNAME )
File "build/bdist.macosx-10.7-intel/egg/MySQLdb/__init__.py", line 81, in Connect
File "build/bdist.macosx-10.7-intel/egg/MySQLdb/connections.py", line 187, in __init__

_mysql_exceptions.OperationalError: (1045, "Access denied for user 'ekogan'@'dyn-209-2-217-168.dyn.columbia.edu' (using password: YES)")

I know my host and user/pass work because I'm able to access it via PHP. But for some reason it's denied here. Could there be some SQL versioning issues? I am totally unsure of how to proceed.

share|improve this question

2 Answers

up vote 2 down vote accepted

PHP probably does not access your MySQL server as a remote host. Python probably does. So check your permissions.

share|improve this answer
yes, i just contacted my admin and he confirmed none of us can access remotely. thanks for the info. – genekogan Jan 30 '12 at 21:01

If you have permission to inspect the mysql.user table, open a terminal and type

% mysql -u ekogan -p mysql
mysql> select user, host, password from user where password = password(PASSWORD);

Above, change PASSWORD to the value of your password surrounded by quotes, (i.e. if your password is foobar, change PASSWORD to "foobar"). The user, host and password must match an entry in the mysql.user table.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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