MySQL 8.0.11 error connect to caching_sha2_password the specified module could not be found

I had the following solution: change my.ini in a [mysqld] section like this: #default_authentication_plugin=caching_sha2_password (comment line!) default_authentication_plugin=mysql_native_password (new line) Connect to your MySQL under root in a command line client and execute: ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘xxx’; Where xxx is your current password.

MySQL Workbench Dark Theme

Here’s how to change MySQL Workbench’s colors (INCLUDING THE BACKGROUND COLOR). Open the XML file called code_editor.xml located in the data folder of the MySQL Workbench’s installation directory (usually C:\Program Files\MySQL\MySQL Workbench 6.3 CE\data). Here you’ll find a lot of styling for different code elements, but there are some missing. MySQL Workbench uses scintilla as … Read more