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
When trying to connect to me SQL server, I get this:
ERRException (ERR {errCode = 1251, errState = "08004", errMsg = "Client does not support authentication protocol requested by server; consider upgrading MySQL client"})
Any ideas on how to fix this? Is this related to #40?
The text was updated successfully, but these errors were encountered:
Normally it's due to having the mysql db server running with 'caching_sha2_password' authentication, which isn't currently supported by mysql-haskell. The quick fix for one with access to the db server is to change the authentication method with (replace <...> with correct data):
alter user ''@'' identified with mysql_native_password by ''.
When trying to connect to me SQL server, I get this:
Any ideas on how to fix this? Is this related to #40?
The text was updated successfully, but these errors were encountered: