mysql
李逢涛
纵使望断了天涯风雨,却也望不断天涯路!
展开
-
Authentication plugin ‘caching_sha2_password‘ cannot be loaded:
执行命令use mysql;select user,plugin from user where user='root';可以看到当前用户的加密方式为caching_sha2_password执行命令alter user 'root'@'%' identified with mysql_native_password by '123456';flush privileges;能连接了。以上报错是由于目前已有的客户端连接软件还不支持Mysql8新增加的加密方式cachin.原创 2020-09-19 16:51:20 · 2024 阅读 · 1 评论 -
mysql ERROR 1044 (42000): Access denied for user ''@'localhost' to database
报错,拒绝访问。一脸懵逼,还可以有这问题?我的表明明在navicat可以看见呀。后来想自己设置了mysql用户名密码。于是mysql -uroot -p(你的密码)。登录进去。再看下show databases;表是不是都有了?...原创 2018-10-15 12:25:40 · 504 阅读 · 0 评论 -
TypeException: Error setting non null for parameter #1 with JdbcType null
Caused by: org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='name', mode=IN, javaType=class java.lang.String, jdbcType=null, numericScale=null, res...原创 2018-11-23 16:47:55 · 27114 阅读 · 4 评论 -
MySql错误 [Err] 1264 - Out of range value for column 'created_at' at row 1
MySql错误 [Err] 1264 - Out of range value for column 'created_at' at row 1首先,检查字段长度是否足够。然后,检查字段类型是否是bigint.如果还是不行的话,就是下面的原因了:新版本的MySQL对字段的严格检查。解决方法:修改my.ini,将sql-mode="STRICT_TRANS_TABLES,NO_A...原创 2018-11-22 20:38:50 · 16628 阅读 · 0 评论 -
authentication plugin 'caching_sha2_password'
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';flush privileges;转载 2018-12-04 17:37:03 · 1201 阅读 · 1 评论