李优秀 发表于 2024-10-25 01:33:30

unknown variable ‘default-authentication-plugin=mysql_native_password

docker 部署指定 mysql:8 下载的最新8.4版本的mysql 启动时出现该错误
解决办法
由于mysql8.4废弃该参数default-authentication-plugin=mysql_native_password,改为使用这个参数
--mysql-native-password=ON
services:
mysql:
    image: mysql:8
    command:--mysql-native-password=ON --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
    restart: always
参考
官方文档分析
https://dev.mysql.com/doc/refman/8.4/en/native-pluggable-authentication.html#native-pluggable-authentication-installation

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: unknown variable ‘default-authentication-plugin=mysql_native_password