tomcat连接mysql8的那些坑爹的报错

1 新建mysql的user后但是navicat连接显示密码错误

来源:mysql8 :客户端连接caching-sha2-password问题

通过mysql shell新建,默认密码模式-standard提交后后自动变成caching_sha2_password,

坑爹的不知道密码变成什么了

tomcat连接mysql8的那些坑爹的报错_第1张图片

解决方式:

     #修改加密规则  
    ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; 
    #更新密码(mysql_native_password模式)    
    ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '{NewPassword}';

2 jar包mysql-connector-java

原来项目是mysql5版本,现在换了mysql8,tomcat的lib里的mysql-connector-java-5也需要同步更新成:

3 推荐帮助大大的:TOMCAT JDBC连接不上MYSQL的常用诊断

 

4 mysql 数据库 修改默认时区

set global time_zone = '+8:00';设置时区更改为东八区

flush privileges; 刷新权限

然后退出后重新登录就可以了,显示当前时间和我现在的时间一致了。

 

5连接数据库:ERROR: The server time zone value '�й�׼' is unrecognized or represents more than one t

操作可行

来源:http://www.zhimengzhe.com/shujuku/MySQL/224102.html

在数据库驱动的url后加上serverTimezone=UTC参数

写代码的时候要注意,如果该参数是‘?’后的第一个,即

 jdbc:mysql://localhost:3306/exam?serverTimezone=UTC 

是没有问题的,但如果不是第一个,即

 jdbc:mysql://localhost:3306/exam?characterEncoding=utf8&serverTimezone=UTC 

这种写法是会报错的,会提示The reference to entity “serverTimezone” must end with the ‘;’ delimiter. 
运行后控制台也会出现 
对实体 “serverTimezone” 的引用必须以 ‘;’ 分隔符结尾。 
的错误提示。 
将代码改为

 jdbc:mysql://localhost:3306/exam?characterEncoding=utf8&serverTimezone=UTC 

即可。在xml的配置文件中 ;要用 & 代替。

 

以上就是连接数据库:ERROR: The server time zone value '�й�׼' is unrecognized or represents more than one time zone的全文介绍,希望对您学习和使用mysql有所帮助.

你可能感兴趣的:(数据库)