嘗試使用 Python 連接器連接到 MySQL 伺服器並使用 mysql_native_password當身份驗證外掛程式建立使用者時,出現錯誤訊息:
mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_password' is not supported
要解決此問題,請確保安裝了正確的 Python 套件。在提供的範例程式碼中:
import mysql.connector cnx = mysql.connector.connect(user='lcherukuri', password='password', host='127.0.0.1', database='test') cnx.close()
檢查是否安裝了 mysql-connector-python 而不是 mysql-connector。
以上是為什麼我的 Python MySQL 連線失敗且不支援「caching_sha2_password」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!