Java教程

ubuntu20.04 部署springboot 项目遇到的坑

本文主要是介绍ubuntu20.04 部署springboot 项目遇到的坑,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Access denied for user 'root'@'localhost'

我遇到的问题是:服务器mysql能登录,项目无法用root登录,报错如上
解决:
创建一个新用户,授权刷新

  grant all privileges on *.* to 'root01'@'%' ;
  flush privileges;

java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

解决:
在spring.datasource.url 添加

allowPublicKeyRetrieval=true

如:

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/yourdatabase?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT&allowPublicKeyRetrieval=true
    username: root
    password: 123456
    driver-class-name: com.mysql.cj.jdbc.Driver

此外还有时区问题,最终改为serverTimezone=GMT成功

这篇关于ubuntu20.04 部署springboot 项目遇到的坑的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!