You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With MySQL version 4.1 (published in 2004!) came a protocol change, which introduced more secure password authentication.
The variable old_password was added, which enables legacy support for the old password authentication but disables the new, more secure one.
The old password authentication uses very weak hashing which is why it is considered insecure. You should not use it, if you don't need legacy support!
Since it is insecure and deprecated, Go-MySQL-Driver does not enable this old password authentication by default. If you depend on it, you can enable it explicitly by adding allowOldPasswords=true to your DSN.
How to disable it?
Set old_passwords to false in your my.cnf (my.ini on Windows), MySQL's configuration file.
On Linux you will find this file at /etc/my.cnf.
The var old_passwords belongs to the mysqld section, if you can't find it there, just add it: