mac. mysql8.0死活连接不上 user表已授权%解决办法
Posted 逆风造梦师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac. mysql8.0死活连接不上 user表已授权%解决办法相关的知识,希望对你有一定的参考价值。
问题一:
使用mysql --verbose --help | grep my.cnf 命令常看my.cnf文件位置
vim 修改my.cnf
[mysqld]
Only allow connections from localhost
bind-address = 127.0.0.1
发现确实只绑定了127.0.0.1将bind-address修改为0.0.0.0 使其允许任意ip连接
问题二:
MySQL said: Authentication plugin \'caching_sha2_password\' cannot be loaded: dlopen(/usr/local/lib/plugin/caching_sha2_password.so, 2): image not found
执行:
mysql -u root -p
注意密码复杂度,大小写特殊符号数字,八位以上
# ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
mysql> ALTER USER \'root\'@\'%\' IDENTIFIED WITH mysql_native_password BY \'App@123456\';
以上是关于mac. mysql8.0死活连接不上 user表已授权%解决办法的主要内容,如果未能解决你的问题,请参考以下文章
Navicat MySql 连不上 本地开发环境 MySQL8.0
SQLyog连接MySQL8.0报2058错误的完美解决方法
2059-authentication plugin 'caching_sha2_password"cnnot bt loaded :mysql8.0数据库连接不上(Navicat)