首页 > 数据库 >DBeaver 连接 mysql 报错:Public Key Retrieval is not allowed

DBeaver 连接 mysql 报错:Public Key Retrieval is not allowed

时间:2024-09-11 18:14:33浏览次数:6  
标签:allowed DBeaver 连接 Retrieval 报错 Key mysql Public

前言

DBeaver 连接 mysql 报错:Public Key Retrieval is not allowed

遇到 "Public Key Retrieval is not allowed" 错误时,通常意味着你正在使用的身份验证方法需要加密连接,但是没有正确地配置客户端或服务器来支持这种加密。

解决

第一种

可以在连接字符串中添加 allowPublicKeyRetrieval=true 参数来解决这个问题。例如:

jdbc:mysql://localhost:3306/your_database?allowPublicKeyRetrieval=true

请注意,这可能会使你的连接容易受到中间人攻击,因为允许客户端从服务器检索公钥

第二种

禁用 SSL:如果你不需要 SSL 连接,可以在连接字符串中添加 useSSL=false 参数来禁用 SSL

jdbc:mysql://localhost:3306/your_database?useSSL=false

标签:allowed,DBeaver,连接,Retrieval,报错,Key,mysql,Public
From: https://www.cnblogs.com/niuben/p/18408688

相关文章

  • mysql 连接失败:message from server: "Host '192.168.xx.xxx' is not allowed to conn
    前言mysql连接失败:messagefromserver:"Host'192.168.xx.xxx'isnotallowedtoconnecttothisMySQLserver"解决错误信息表明你尝试从IP地址192.168.xx.xxx连接到MySQL服务器,但是该IP地址没有被授权连接权限。为了解决这个问题,你需要确保你的MySQL用户权限......
  • DBeaver clickhouse 时区不对 时间少了8小时
    现象:确认过clickhouse时区配置是正确的(时区配置参考:https://blog.csdn.net/vkingnew/article/details/107227037)然而通过DBeaver连接后查询当前时间却慢了8小时,通过命令行连接clickhouse查看时间又是准确的命令行查询DBeaver查询原因:是DBeaver配置问题解决方法:......
  • 本地nacos启动报错
    解决方案:转载自:https://blog.csdn.net/nb970705/article/details/129467583试过登录模式,搞了两天,最后一个替换,就可以登录了;。报错如下:2024-09-1013:45:10,876INFOBean'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@1b58......
  • spring boot 项目报错找不到compose.yaml文件
    springboot的项目引用了spring-boot-docker-compose,运行时没问题,但是将该项目放到了一个父项目中作为一个module后,在idea里直接运行的话会报错找不到compose.yaml文件,因为idea试图去父项目的路径下找。如果直接在子项目的路径里运行:mvnspring-boot:run是没问题的,可以启动。......
  • 【Azure Service Bus】创建 ServiceBus 的Terraform脚本报错GetAuthorizationRule: In
    问题描述在使用Terraform部署ServiceBus时候,遇见了如下报错:Error:ErrormakingReadrequestonAzureServiceBusTopicAuthorizationRule:servicebus.TopicsClient#GetAuthorizationRule:Invalidinput:autorest/validation:validationfailed:parameter=authorization......
  • 【Azure Service Bus】创建 ServiceBus 的Terraform脚本报错GetAuthorizationRule: In
    问题描述在使用Terraform部署ServiceBus时候,遇见了如下报错:Error:ErrormakingReadrequestonAzureServiceBusTopicAuthorizationRule:servicebus.TopicsClient#GetAuthorizationRule:Invalidinput:autorest/validation:validationfailed:parameter=authorizat......
  • navicat无法连接远程的mysql--Host ‘xx.xx.xx.xx‘ is not allowed to connect to th
     之前在远程虚拟机上面部署了mysql,想在本地客户端使用navicat连接数据库,结果提示:host'xxx'isnotallowedtoconnecttothismysqlserver   解决出现这个提示,是由于我们使用root用户登录时,没有给root用户设置能访问的机器,所以我们设置一下,就可以了。 1:登录mysq......
  • 【pom】解决jar冲突心得 之 通过解决启动报错  Caused by: java.lang.NoClassDefFoun
     解决jar冲突心得之通过解决启动报错 Causedby:java.lang.NoClassDefFoundError:Couldnotinitializeclasscom.fasterxml.jackson.databind.ObjectMapper 学思路 一般情况,出现Causedby:java.lang.NoClassDefFoundError的问题1.要么是jar没有引入pom,所以找不......
  • DBeaver 24.2 发布下载,新增功能概览
    DBeaverUltimateEdtion24.2Multilingual(macOS,Linux,Windows)-通用数据库工具Onetoolforalldatasources请访问原文链接:https://sysin.org/blog/dbeaver/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.orgDBeaver24.2​2024年9月9日我们很高兴与......
  • vue 可选链操作符(?.)报错
    一直用的好好的这个运算符,换了个项目,用不了了首先交代一下,vue版本是2.6.11,node版本是v14.17.4,vue-template-compiler也是2.6.11首先哈,我们升级一下vue到2.7.xx版本[email protected]@2.7.0然后安装这个插件npminstall'@babel/plugin-proposal-opti......