Python连接MySQL报错:mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_passwo

Python连接MySQL报错:mysql.connector.errors.NotSupportedError: Authentication plugin ‘caching_sha2_password’ is not supported

Python连接MySQL数据库报错:mysql.connector.errors.NotSupportedError: Authentication plugin ‘caching_sha2_password’ is not supported
Python连接MySQL报错:mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_passwo_第1张图片
这个错误出现的原因是在mysql8之前的版本中加密规则为mysql_native_password,而在mysql8以后的加密规则为caching_sha2_password。

解决办法:

添加一句语句(auth_plugin=‘mysql_native_password’),添加位置如下代码:
Python连接MySQL报错:mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_passwo_第2张图片

import mysql.connector

mydb = mysql.connector.connect(
    host="localhost",
    user="root",
    passwd="123",
    database="mybase",
    auth_plugin='mysql_native_password'
)
mycursor = mydb.cursor()

mycursor.execute("SHOW TABLES")

  • 致谢
    若对大家有用,感谢点赞或评论;若有不足或补充之处,也感谢大家评论进行指正,后期我将对本文进行补充完善。相信这是互相进步的开始!

你可能感兴趣的:(软件开发技术_数据库,数据库Database)