启动Spring后,连接mysql报错
Posted Pandaly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动Spring后,连接mysql报错相关的知识,希望对你有一定的参考价值。
- 连接失败,原因是mysql服务未启动
解决方法:启动mysql服务
方法一:
- 以管理员身份运行CMD
- 输入命令:net start mysql
方法二:
- 右键计算机-管理-服务和应用程序-服务
- 右键启动Mysql服务
- 配置的密码正确,但提示拒绝访问:
解决方法:配置文件中加入SSL=Fasle
spring.datasource.url=jdbc:mysql://localhost:3306/sampledb?useUnicode=true&characterEncoding=utf-8&useSSL=false
- 提示java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed
解释方法:
&allowPublicKeyRetrieval=true
spring.datasource.url=jdbc:mysql://localhost:3306/sambledb?useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true&useSSL=false
以上是关于启动Spring后,连接mysql报错的主要内容,如果未能解决你的问题,请参考以下文章