解决:NotSupportedError: Authentication plugin ‘caching_sha2_password‘ is not supported

阅读 107

2023-02-04


解决:NotSupportedError: Authentication plugin 'caching_sha2_password' is not supported

  • ​​报错如下​​
  • ​​解决办法​​

报错如下

解决:NotSupportedError: Authentication plugin ‘caching_sha2_password‘ is not supported_解决方法

解决办法

mydb = mysql.connector.connect(host="localhost",
user="root",
password="123456",
port=3306)

改为

mydb = mysql.connector.connect(host="localhost",
user="root",
password="123456",
port=3306,
auth_plugin='mysql_native_password')

即可!

更多BUG解决方法,可点击查看​​BUG​​专栏


精彩评论(0)

0 0 举报