Navicat Premium 12 链接 Mysql 时 报错: 查看了相关大神的解决方法,自己也记录一下. 原因: 在 MySQL8之前的版本中加密规则为mysql_native_password 而在 MySQL8以后的加密规则为caching_sha2_password . 也就是 MySQ ...
分类:
其他好文 时间:
2020-03-13 12:58:41
阅读次数:
46
刷新 flush privileges; 删除用户及权限 drop user 用户名@'%'; drop user gjh@'120.244.144.169'; 赋予权限 GRANT ALL PRIVILEGES ON *.* TO 'root'@'访问IP' IDENTIFIED BY '数据库密 ...
分类:
数据库 时间:
2020-03-11 23:26:31
阅读次数:
72
DBeaver 连接MySql 报错 Unable to load authentication plugin 'caching_sha2_password'. 网上查资料说的是mysql5.x 版本和 8.x版本的区别; 5.7版本是:default_authentication_plugin=m ...
分类:
数据库 时间:
2020-03-09 13:35:41
阅读次数:
260
mysql8忘记了root密码,需要修改 步奏: 1. 从/etc/my.cnf 配置文件中加入skip-grant-table后正常登陆,把 localhost和user=root 的 authentication_string设置为空字符串 # systemctl restart mysqld ...
分类:
数据库 时间:
2020-03-08 19:54:24
阅读次数:
85
Users Objects and Groups Creating local user objects. Creating local user groups. https://docs.paloaltonetworks.com/pan-os/9-1/pan-os-admin/user-id/us ...
分类:
其他好文 时间:
2020-03-08 19:28:27
阅读次数:
75
https://www.cnblogs.com/datacool/p/datacool_dotnetcore_demo.html 实践技术看点 1、Swagger管理API说明文档 2、JwtBearer token验证 3、Swagger UI增加Authentication 4、EntityFr ...
方式: 1.证书 (https://www.cnblogs.com/hanling/p/12411318.html) 2.Authentication: Basic Auth $arr_header[] = "Content-Type:application/json";$arr_header[] ...
分类:
其他好文 时间:
2020-03-04 18:49:06
阅读次数:
55
tagtag2--> 这里我只是记录下自己在学习中的点滴和一些不懂的地方 Cookie一般是用户网站授权,当用户访问需要授权(authorization)的页面,程序会判断是否已经授权,并认证 添加认证代码:引入命名空间:Microsoft.AspNetCore.Authentication.Coo ...
分类:
Web程序 时间:
2020-03-04 14:51:37
阅读次数:
100
Shiro 简介 照例又去官网扒了扒介绍: Apache Shiro? is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, a ...
分类:
其他好文 时间:
2020-03-03 11:02:58
阅读次数:
55
Telnet(注:Telnet的被登录设备一定要配置enable密码)拓扑:PC R1 R2需求:PC通过R1能够登录到R2设备上。1:不需要提供用户名和密码被登陆设备:(config)#lin vty 0 15 允许登录的数量,这里最大允许15个 no login 不需要用户名和密码2:需要提供密 ...
分类:
Web程序 时间:
2020-03-03 10:59:18
阅读次数:
66