1、
org.apache.hadoop.hive.metastore.HiveMetaException: Failed to get schema version.
Underlying cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException : Unknown database 'hive'
修改hive-site.xml中的hive.metastore.schema.verification 为false即可
2、
需要启用mysql的SSL或者使用连接的时候,useSSL=false,
vi hive-site.xml,修改如下:
这里有个坑就是hive的配置文件是.XML
格式,而在xml文件中&;
才表示&
,所以正确的做法是在Hive的配置文件中,如hive-site.xml
进行如下设置
报错如下:
创建数据库即可解决:
create database hive;;