0

Although I have changed the password format to mysqlnativepassword , the problem still persists . Could anyone help me correct this ? Python Shell MYSQL Users Code

  • Welcome to SO. Please include information as text. Including the plugin in the MySQL users table would be useful. – danblack Jun 06 '20 at 05:28

1 Answers1

0

A more recent version of python connector will connect using the existing caching_sha2_password format.

You have not used ALTER USER to change the plugin for the user (like this answer).

default_authentication_plugin= only changes the default for newly created users.

danblack
  • 12,130
  • 2
  • 22
  • 41