Hive Metastore的JDBC URL设置与mysql

时间:2018-05-27 10:21:44

标签: mysql jdbc hive

以下是我在hive-site.xml中用来连接mysql的URL。

jdbc:mysql://localhost:3306/metastore_db?autoReconnect=true&verifyServerCertificate=false;useSSL=true

不知何故,它出错并出现以下错误。

  

连接属性“verifyServerCertificate”仅接受值   形式:'true','false','yes'或'no'。价值   'false; useSSL = true'不在此集合中。

这是我运行schematool的相同网址,它运行良好。

如果对网址有任何建议,请与我们联系。

由于

1 个答案:

答案 0 :(得分:0)

啊,我刚刚想出了解决方案。

我们需要使用

> & amp ; ( no spaces included ) in the JDBC URL

以下是对我有用的:

jdbc:mysql://localhost:3306/metastore_db?autoReconnect=true&
amp;verifyServerCertificate=false& amp;useSSL=true

(记得在&之后删除空格,我必须添加空格以便在此HTML页面上显示)

希望这有帮助。

此致

Abhay Dandekar