数据库
首页 > 数据库> > (2003, “Can‘t connect to MySQL server on ‘localhost‘ (10061)“)解决

(2003, “Can‘t connect to MySQL server on ‘localhost‘ (10061)“)解决

作者:互联网

在python里通过

            self.db_conn = MySQLdb.connect(host='localhost', port=3306,
                                           user='root', passwd='root', db='db_college',
                                           client_flag=db_client_constant.FOUND_ROWS)

连接数据库时,报错:(2003, “Can’t connect to MySQL server on ‘localhost’ (10061)”),意思就是连不上。
查了很多解决方案,比如打开mysql服务、重启mysql,检查密码是否错误,检查端口是否打开等等等等,还是没有解决,最后把host='localhost’改成host='127.0.0.1’就连上了。
连上了!有知道原因的小伙伴给我留言!

标签:10061,db,server,2003,host,connect,MySQL,localhost
来源: https://blog.csdn.net/qq_40406916/article/details/113280256