The issue is not with Toad Edge but with MySQL 8.
- Change the encryption of the user’s password by altering the user with below Alter command :
ALTER USER ‘username’@‘ip_address’ IDENTIFIED WITH mysql_native_password BY ‘password’;
Or
- Change the authentication plugin in my.cnf file for Linux / my.ini file in Windows:
[mysqld]
default_authentication_plugin=mysql_native_password
Restart the mysql server to take the changes in affect and try connecting via mysql with any mysql client.
No comments:
Post a Comment