1.情景
我安装了 mysql 8.0,结果报如下的错误
Authentication method 'caching_sha2_password' not supported by any of the available plugins.
解决方法就是,找到my.ini
把
default_authentication_plugin=caching_sha2_password
变成
default_authentication_plugin=mysql_native_password
问题原因有了,解决方案也理解了。但是my.ini文件找不到。
2.找文件
2.1.直接在可执行(C:\Program Files\MySQL\MySQL Server 8.0\)文件下找,找不到。
2.2.能不能用命令直接设置呢,还是不行
mysql> set global default_authentication_plugin='mysql_native_password';
ERROR 1238 (HY000): Variable 'default_authentication_plugin' is a read only variable
2.3 再尝试查找。
3.my.ini 的位置
后来我想起了,可执行文件的快捷方式在 C:\ProgramData.....目录下,那么能不能my.ini也在C:\ProgramData的目录下呢。C:\ProgramData下有个C:\ProgramData\MySQL\MySQL Server 8.0。哦。真在这里。
C:\ProgramData下有个C:\ProgramData\MySQL\MySQL Server 8.0\my.ini
4.问题总结
原来C:\Program Files和C:\ProgramData是分别放在可执行文件和数据的位置。那么程序的数据包括配置数据就在ProgramData的目录下了。个人理解,没太多的调查。