mysql8.x密码的认证方式变了,需要修改远程认证方式 问题描述 Connection to lab-130-mysql failed.Unable to load authentication plugin 'caching_sha2_password'. 问题解决 方法1 CREATE USE ...
分类:
数据库 时间:
2018-05-10 11:22:30
阅读次数:
1483
这个错误出现的原因是在mysql8之前的版本中加密规则为mysql_native_password,而在mysql8以后的加密规则为caching_sha2_password。 解决此问题有两种方法,一种是更新navicat驱动来解决此问题,一种是将mysql用户登录的加密规则修改为mysql_na ...
分类:
数据库 时间:
2018-05-06 18:01:39
阅读次数:
1958
方法一: (1)使用brew install mysql (2)使用mysql -uroot连接时报错: Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(/usr/local/mysql/lib/plugi ...
分类:
数据库 时间:
2018-05-06 13:39:21
阅读次数:
1860
"LindDotNetCore模块介绍" "大叔博客" LindDotNetCore相关模块介绍 [x] 全局都是依赖DI [x] 消息队列 [x] NoSql [x] Caching [x] 仓储 [x] 服务总线 [x] Solr [x] 调度 [x] 日志 [x] Asspect拦截组件 [ ...
分类:
编程语言 时间:
2018-05-06 12:14:46
阅读次数:
258
MySQL 8 连接时出现 1251 和 2059 错误 原因是MySQL 8 改了密码加密算法。[^1] 原来是:mysql_native_password MySQL8 改成了 caching_sha2_password [^1]: https://juejin.im/entry/5adb5de ...
分类:
数据库 时间:
2018-05-05 13:22:42
阅读次数:
186
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Script.Serialization; using System.Text; using S... ...
分类:
微信 时间:
2018-04-28 19:36:39
阅读次数:
217
PING 字符串:SET runoobkey redis GET runoobkey DEL runoobkey 哈希(hash):HMSET runoobkey name "redis tutorial" description "redis basic commands for caching" ...
分类:
其他好文 时间:
2018-04-24 17:30:42
阅读次数:
273
读本篇文章,建议先看看我之前的文章php依赖注入到此,现在我们正式开始分析yii2框架组件构造流程我们先从yii\di\ServiceLocator(服务定位器)入手吧!!让我们先看个实例:use?yii\di\ServiceLocator;
use?yii\caching\FileCache;
$locator?=?new?ServiceLoc
分类:
其他好文 时间:
2018-04-23 16:36:53
阅读次数:
356
缓存是指代理服务器或客户端磁盘内保存的资源副本。利用缓存可减少对服务器的访问,因此也就节省了通信流量和通信时间。 浏览器缓存(Brower Caching)是浏览器在本地磁盘对用户最近请求过的文档进行存储,当访问者再次访问同一页面时,浏览器就可以直接从本地磁盘加载文档。 浏览器缓存的优点有: 减少了 ...
分类:
其他好文 时间:
2018-04-22 13:05:11
阅读次数:
113
登录成功后使用Subject.getSession()即可获取会话;其等价于Subject.getSession(true),即如果当前没有创建Session对象会创建一个; 另外Subject.getSession(false),如果当前没有创建Session则返回null(不过默认情况下如果启用 ...
分类:
编程语言 时间:
2018-04-16 18:48:28
阅读次数:
1005