我尝试使用连接器8.0.11连接MySQL数据库与Java。一切似乎都很好,但我得到这个异常:

Exception in thread "main" java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed at
     com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:108) at 
     com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:95) at
     com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) at     
     com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:862) at 
     com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:444) at
     com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:230) at
     com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:226) at
     com.mysql.cj.jdbc.MysqlDataSource.getConnection(MysqlDataSource.java:438) at
     com.mysql.cj.jdbc.MysqlDataSource.getConnection(MysqlDataSource.java:146) at
     com.mysql.cj.jdbc.MysqlDataSource.getConnection(MysqlDataSource.java:119) at
     ConnectionManager.getConnection(ConnectionManager.java:28) at
     Main.main(Main.java:8)
 

下面是我的Connection Manager类:

public class ConnectionManager {

    public static final String serverTimeZone = "UTC";
    public static final String serverName = "localhost";
    public static final String databaseName ="biblioteka";
    public static final int portNumber = 3306;
    public static final String user = "anyroot";
    public static final String password = "anyroot";
    
    public static Connection getConnection() throws SQLException {
    
        MysqlDataSource dataSource = new MysqlDataSource();
    
        dataSource.setUseSSL( false );
        dataSource.setServerTimezone( serverTimeZone );
        dataSource.setServerName( serverName );
        dataSource.setDatabaseName( databaseName );
        dataSource.setPortNumber( portNumber );
        dataSource.setUser( user );
        dataSource.setPassword( password );
        
        return dataSource.getConnection();
    }
}

你应该在你的mysql-connector allowPublicKeyRetrieval=true中添加客户端选项,以允许客户端自动从服务器请求公钥。注意allowPublicKeyRetrieval=True可能允许恶意代理执行MITM攻击以获取明文密码,因此默认情况下为False,必须显式启用。

请参阅MySQL .NET连接字符串选项

您也可以尝试添加useSSL=false当您使用它进行测试/开发的目的

例子:

jdbc:mysql://localhost:3306/db?allowPublicKeyRetrieval=true&useSSL=false

使用jdbc url如下:

jdbc:mysql://localhost:3306/Database_dbName?allowPublicKeyRetrieval=true&useSSL=False;

PortNo: 3306在您的配置中可以不同


我在spring引导框架上使用下面的配置解决了这个问题

spring.datasource.url=jdbc:mysql://localhost:3306/db-name?useUnicode=true&characterEncoding=UTF-8&allowPublicKeyRetrieval=true&useSSL=false
spring.datasource.username=root
spring.datasource.password=root

作为建议的答案,您可以尝试使用mysql_native_password身份验证插件而不是caching_sha2_password身份验证插件。

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password_here'; 

此解决方案适用于MacOS Sierra,并运行MySQL 8.0.11版本。请确保您在构建路径中添加了驱动程序-“添加外部jar”应该与SQL版本匹配。

String url = "jdbc:mysql://localhost:3306/syscharacterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true";

在我的例子中,是用户错误。我使用的是root用户,密码无效。我不知道为什么我没有得到一个认证错误,而是收到了这个神秘的消息。


在我的情况下,上述错误实际上是由于错误的用户名和密码。 解决方法: 1. 打开DriverManager.getConnection("jdbc:mysql://localhost:3306/? "useSSL=false", "用户名","密码"); 用户名和密码字段可能错误。输入用于启动mysql客户端的用户名和密码。用户名一般为root,密码为mysql启动界面出现类似界面时输入的字符串

注意:在您的情况下,端口名3306可能不同。


我发现这个问题令人沮丧,因为我昨天能够与数据库交互,但今天早上回来后,我开始得到这个错误。

我尝试添加allowPublicKeyRetrieval=true标志,但我一直得到错误。

什么修复它为我是做项目->清洁在Eclipse和清洁在我的Tomcat服务器。其中一个(或两个)解决了问题。

我不明白为什么,因为我使用Maven构建我的项目,并且在每次代码更改后都重新启动我的服务器。很刺激…


给出连接URL jdbc: mysql: / / localhost: 3306 / hb_student_tracker吗?allowPublicKeyRetrieval = true&useSSL = false&serverTimezone = UTC


如果你在连接mysql(运行mysql的本地或mysql容器)时出现以下错误:

java.sql.SQLNonTransientConnectionException:不允许公钥检索

解决方案: 在数据库服务中添加以下行:

command: --default-authentication-plugin=mysql_native_password

更新useSSL=true在春季启动应用程序连接mysql;

jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf8&useSSL=true&useLegacyDatetimeCode=false&serverTimezone=UTC

对于DBeaver用户:

右键单击连接,选择“编辑连接” 在“连接设置”界面(主界面)点击“编辑驱动程序设置” 点击“连接属性”(在最近的版本中,它被命名为“驱动程序属性”) 右键单击“用户属性”区域,选择“添加新属性” 添加两个属性:"useSSL"和"allowPublicKeyRetrieval" 通过双击“value”列,将其值设置为“false”和“true”


在对现有应用程序进行dockerization时,我也遇到过这样的问题。解决方案是在JDBC连接字符串中添加MySQL的allowPublicKeyRetrieval连接选项,值为true。 如果这是不工作,尝试添加useSSL选项为false以及。

结果字符串看起来像这样:

jdbc:mysql://<database server ip>:3306/databaseName?allowPublicKeyRetrieval=true&useSSL=false

首先,请确保您的数据库服务器已启动并运行。 我得到了同样的错误,在尝试了这里列出的所有答案后,我发现我的数据库服务器没有运行。

您可以从MySQL工作台或命令行中检查相同的使用

mysql -u USERNAME -p

这听起来很明显,但很多时候我们假设数据库服务器一直在运行,特别是当我们在本地机器上工作时,当我们重新启动/关闭机器时,数据库服务器将自动关闭。


这也可能发生由于错误的用户名或密码。 作为解决方案,我添加了allowPublicKeyRetrieval=true&useSSL=false部分,但我仍然得到了错误,然后我检查了密码,它是错误的。


当从DBeaver这样做时,我必须去“连接设置”->“SSL”选项卡,然后:

取消选中“验证服务器证书” 检查“允许公钥检索”

这就是它的样子。

注意,这只适用于本地开发。



将服务器时区设置为本地位置,修复了这个问题。



我的问题是在pom.xml (spring boot)中。 我的pom.xml有两个不同数据库的依赖项。确保只保留MySQL依赖项,并删除任何其他数据库依赖项。


另一种方法,在DBeaver上。

您可以编辑数据库的连接,在连接设置中进入SSL选项卡。这里有一个“允许公钥检索”的复选框,将其标记为真。那问题就解决了。


在MySQL 8.0中,默认的身份验证插件由mysql_native_password更改为caching_sha2_password。 有关此更改的更多信息,请参阅https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password。

这意味着为了使用caching_sha2_password,连接必须执行以下操作之一:

使用安全连接(useSSL=true) 使用未加密的连接,支持使用RSA密钥对交换密码(useSSL=false和其他配置参数-见https://dev.mysql.com/doc/refman/8.0/en/caching-sha2-pluggable-authentication.html)

你有几个选择:

ALTER the users to use the mysql_native_password plugin (like how it was doing historically and will also work with older clients / connections which don't support caching_sha2_password) useSSL=true useSSL=false and configure public key retrieval (this doesn't mean using allowPublicKeyRetrieval=true which would avoid the error - but defeats the objective of this extra security and is slow - it does mean using something like server-public-key-path to point to the client side copy of the public key)


当我遇到根帐户“不允许公开密钥检索”的问题时,我更新了这个参数。


spring.datasource.url=jdbc:mysql://localhost:3306/database?createDatabaseIfNotExist=true&allowPublicKeyRetrieval=true&useSSL=false

您可以将这一行插入到应用程序中。属性文件,这意味着,

spring.datasource.url=jdbc:mysql://localhost:3306/ This one uses mysql as the database service. I think this can changed by using relavent name and the port of your database name. database?createDatabaseIfNotExist=true = use the database named database if you haven't already make a database like that, make a new one. allowPublicKeyRetrieval=true = to allow the client to automatically request the public key from the server. (This part might be additional) useSSL=false = This will disable SSL and also suppress the SSL errors

此外,要警惕同一文件中的spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect属性。

最后检查是否在pom.xml文件的dependencies中添加了以下依赖项。

<dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.23</version>
</dependency>

打开DBeaver->编辑连接->查找驱动程序属性->allowPublicKeyRetrieval=true和useSSl=true