python下连接mysql的错误 错误码 (10061)

util.db=MySQLdb.connect(user='root',
                                passwd='5820853',
                                db='sportdata',
                                use_unicode='True',
                                charset='utf8',
                                host="127.0.0.1",
                                cursorclass=cursors.DictCursor)

今天晚上更新了几个补丁,后来使用python连接不上mysql,总是提示 2003, "Can't connect to MySQL server on 'localhost' (10061)"

百度google说是,更新了一个补丁冲突了,后来全部卸载了,还是不行,奇怪的是,java,mysql都可以正常访问。python代码在公司电脑上可以正常运行,就仔细检查了下python中关于mysql的连接配置。

原来错误出现在localhost这个名称的解析上,在使用MySQLdb连接数据库的时候,吧host改成ip就行了。

奇怪的是,在hosts文件里配置了localhost也不行,虽然问题是解决了,总感觉还是有些不太方便。

留个日志,问题虽小。


你可能感兴趣的:(python下连接mysql的错误 错误码 (10061))