报错:Driver class ‘org.gjt.mm.mysql.Driver’ could not be found, make sure the ‘MySQL’ driver (jar file) is installed.
错误原因:jar包版本不必配: 解决方法:MySQL8.0以上选择:mysql-connector-java-5.1.***-bin.jar 和 mysql-connector-java-8.0.***.jar
报错:Unable to load authentication plugin ‘caching_sha2_password’.
错误原因:mysql8之前的版本使用的密码加密规则是mysql_native_password,但是在mysql8则是caching_sha2_password,所以需要修改密码加密规则。 解决方法: 1、进去mysql 8.0 command line client 2、输入 use mysql 和 select user,host,plugin,authentication_string from user;可以看到如下的界面,即用户的密码加密规则 3、alter user 'root' @‘localhost’ identified with mysql_native_password by '123456' ; 'root' 是账户名,'123456' 是密码,可以自己设置。
报错:Could not create connection to database server. Attempted reconnect 3 times
错误原因:选择了正确的驱动但是还是无法连接数据库,尝试了改变URL地址(因为mysql默认的时区不是中国的)。 解决方法:
set global time_zone = '+8:00';
show variables like '%time_zone%';
|