启动 Hive 时出现 SSL 错误。它正在工作,但在我解决错误之前我无法执行分桶
While starting Hive I am getting SSL error. Its working but I cant perform bucketing until I resolve the error
错误如下:
Tue Sep 12 03:21:00 IST 2017 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.
我该如何解决这个issue.Any想法
这是 SSL 警告,可以通过将 "?useSSL=false" 放入 Jdbc 连接字符串中来修复,该字符串存在于 hive-site.xml。
即
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://localhost/metastore?useSSL=false</value>
<description>metadata is stored in a MySQL server</description>
错误如下:
Tue Sep 12 03:21:00 IST 2017 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.
我该如何解决这个issue.Any想法
这是 SSL 警告,可以通过将 "?useSSL=false" 放入 Jdbc 连接字符串中来修复,该字符串存在于 hive-site.xml。
即
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://localhost/metastore?useSSL=false</value>
<description>metadata is stored in a MySQL server</description>