- 通过 kitematic 安装 mysql8 镜像不能直接使用
设置root密码
修改固定端口
- 映射本地目录
- 连接本地数据库
问题1
Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(/usr/local/mysql/lib/plugin/caching_sha2_password.so, 2): image not found
解决
进入终端
执行
1
2mysql -uroot -proot
ALTER USER 'root’@'%' IDENTIFIED WITH mysql_native_password BY 'root';