当前位置: 代码迷 >> 综合 >> 解决: Establishing SSL connection without server‘s identity verification is not recommended. Accord
  详细解决方案

解决: Establishing SSL connection without server‘s identity verification is not recommended. Accord

热度:34   发布时间:2023-11-24 22:05:33.0

我在slave1上启动hive时一直循环

Mon Aug 16 15:47:55 CST 2021 WARN: Establishing SSL connection without server’s identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn’t set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to ‘false’. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
翻译后是
周一8月16日15:47:55 CST 2021警告:不建议在没有服务器身份验证的情况下建立SSL连接。根据MySQL 5.5.45+、5.6.26+和5.7.6+的要求,如果未设置explicit选项,默认情况下必须建立SSL连接。为了符合不使用SSL的现有应用程序,verifyServerCertificate属性设置为“false”。您需要通过设置useSSL=false显式禁用SSL,或者设置useSSL=true并为服务器证书验证提供信任库。

百度后找到解决方案
1.进入hive的conf 目录修改hive-site.xml

cd /usr/hive/apache-hive-2.1.1-bin/conf
vi hive-site.xml

2.找到下面这个内容

    <!--数据库连接JDBC的URL地址-->
<property><name>javax.jdo.option.ConnectionURL</name><value>jdbc:mysql://slave2:3306/hive?createDatabaseIfNotExist=true</value>
</property><!--数据库连接driver,即MySQL驱动-->
<property>

3.修改<value>那一行,并在下面加上<description>那一行~

修改前:

<value>jdbc:mysql://slave2:3306/hive?createDatabaseIfNotExist=true</value>

修改后:

<value>jdbc:mysql://slave2:3306/hive?createDatabaseIfNotExist=true&amp;characterEncoding=UTF-8&amp;useSSL=false</value>
<description>JDBC connect string for a JDBC metastore</description>

改完是这样的
在这里插入图片描述
再启动hive,成功!

  相关解决方案