目 录CONTENT

文章目录

nacos启动错误

xlong
2024-03-25 / 0 评论 / 0 点赞 / 32 阅读 / 674 字 / 正在检测是否收录...

nacos启动错误

nacos启动报错No DataSource set

No DataSource set 或者 Public Key Retrieval is not allowed

# 查看数据库
select plugin from mysql.user where user="nacos" \G
plugin: caching_sha2_password

#  如果 plugin=caching_sha2_password 表示需要修改

# 方法一: 修改数据库插件
ALTER USER 'nacos'@'%' IDENTIFIED WITH mysql_native_password BY 'xxx'; 

# 方法二: 修改数据库连接方式
allowPublicKeyRetrieval=true&useSSL=false

0

评论区